ZoomMinimap constructor

const ZoomMinimap({
  1. Key? key,
  2. required ChartZoomController controller,
  3. double height = 28,
  4. Color windowColor = const Color(0x662196F3),
  5. Color trackColor = const Color(0x22000000),
})

Implementation

const ZoomMinimap({
  super.key,
  required this.controller,
  this.height = 28,
  this.windowColor = const Color(0x662196F3),
  this.trackColor = const Color(0x22000000),
});