BMFGeodesicLine constructor Null safety
- {required List<
BMFCoordinate> coordinates, - int? width = 5,
- Color? strokeColor,
- String? textureImage,
- BMFLineDashType? lineDashType = BMFLineDashType.LineDashTypeNone,
- BMFLineDirectionCross180Type? lineDirectionCross180 = BMFLineDirectionCross180Type.None,
- int zIndex = 0,
- bool visible = true}
大地曲线构造方法
Implementation
BMFGeodesicLine({
required this.coordinates,
this.width = 5,
this.strokeColor,
this.textureImage,
this.lineDashType = BMFLineDashType.LineDashTypeNone,
this.lineDirectionCross180 = BMFLineDirectionCross180Type.None,
int zIndex: 0,
bool visible: true,
}) : assert(coordinates.length > 1),
super(zIndex: zIndex, visible: visible);