TMapPolygon constructor

const TMapPolygon({
  1. required List<LatLng> points,
  2. Color color = const Color(0x332196F3),
  3. Color? borderColor = Colors.blue,
  4. double borderWidth = 1.0,
})

Implementation

const TMapPolygon({
  required this.points,
  this.color = const Color(0x332196F3),
  this.borderColor = Colors.blue,
  this.borderWidth = 1.0,
});