PolyWidget constructor
const
PolyWidget({
- Key? key,
- required LatLng center,
- required int widthInMeters,
- required int heightInMeters,
- double angle = 0,
- Orientation? forceOrientation,
- bool? noRotation,
- BoxConstraints? constraints,
- required Widget? child,
Implementation
const PolyWidget({
super.key,
required this.center,
required this.widthInMeters,
required this.heightInMeters,
this.angle = 0,
this.forceOrientation,
bool? noRotation,
this.constraints,
required this.child,
}) : noRotation = noRotation ?? false;