PanelContainersPainter constructor

PanelContainersPainter({
  1. required Map<String, Rect> panelRects,
  2. required Map<String, String> panelNames,
  3. Color borderColor = const Color(0xFF4A9EFF),
  4. Color fillColor = const Color(0x1A4A9EFF),
  5. Color textColor = Colors.white,
})

Implementation

PanelContainersPainter({
  required this.panelRects,
  required this.panelNames,
  this.borderColor = const Color(0xFF4A9EFF),
  this.fillColor = const Color(0x1A4A9EFF),
  this.textColor = Colors.white,
});