BMFPrismOverlay constructor
- {required List<
BMFCoordinate> ? coordinates, - required Color? topFaceColor,
- Color? sideFaceColor,
- String? sideFacTexture,
- int? height,
- int zIndex = 0,
- bool visible = true,
- Map? customMap}
3d棱柱构造方法
Implementation
BMFPrismOverlay({
required this.coordinates,
required this.topFaceColor,
this.sideFaceColor,
this.sideFacTexture,
this.height,
int zIndex = 0,
bool visible = true,
Map? customMap,
}) : assert(coordinates != null),
assert(coordinates!.length > 3),
super(zIndex: zIndex, visible: visible, customMap: customMap);