BMFEncodeGeoPolygon constructor
BMFEncodeGeoPolygon({
- required String encodedGeoPoints,
- required BMFEncodePointType encodePointType,
- dynamic width = 5,
- dynamic strokeColor = Colors.blue,
- dynamic fillColor = Colors.red,
- dynamic lineDashType = BMFLineDashType.LineDashTypeNone,
- dynamic hollowShapes,
- dynamic clickable = false,
- int zIndex = 0,
- bool visible = true,
Implementation
BMFEncodeGeoPolygon({
required this.encodedGeoPoints,
required this.encodePointType,
width: 5,
strokeColor: Colors.blue,
fillColor: Colors.red,
lineDashType: BMFLineDashType.LineDashTypeNone,
hollowShapes,
clickable: false,
int zIndex: 0,
bool visible: true,
}) : super(
zIndex: zIndex,
visible: visible,
width: width,
strokeColor: strokeColor,
fillColor: fillColor,
lineDashType: lineDashType,
hollowShapes: hollowShapes,
clickable: clickable);