MarkerSize constructor

MarkerSize({
  1. required int width,
  2. required int height,
})

Implementation

MarkerSize({
  required this.width,
  required this.height,
})  : assert(width > 0, 'Width must be greater than 0'),
      assert(height > 0, 'Height must be greater than 0');