PanelContainersLayer constructor

const PanelContainersLayer({
  1. Key? key,
  2. required Map<String, Rect> panelRects,
  3. required Map<String, String> panelNames,
  4. Color? borderColor,
  5. Color? fillColor,
  6. Color? textColor,
})

Implementation

const PanelContainersLayer({
  super.key,
  required this.panelRects,
  required this.panelNames,
  this.borderColor,
  this.fillColor,
  this.textColor,
});