ZoomOverlay constructor

ZoomOverlay({
  1. required MapModel mapModel,
  2. double? top,
  3. double? right,
  4. double? bottom,
  5. double? left,
})

Implementation

ZoomOverlay({required this.mapModel, this.top, this.right, this.bottom, this.left})
  : assert(!(top != null && bottom != null)),
    assert(!(right != null && left != null));