NavigationParkingWidget constructor
const
NavigationParkingWidget({
- required ParkingController controller,
- Key? key,
- RoundedCorners roundedCorners = const RoundedCorners.all(),
- NavigationMapControlTheme? light,
- NavigationMapControlTheme? dark,
Implementation
const NavigationParkingWidget({
required this.controller,
super.key,
this.roundedCorners = const RoundedCorners.all(),
NavigationMapControlTheme? light,
NavigationMapControlTheme? dark,
}) : super(
light: light ?? NavigationMapControlTheme.defaultLight,
dark: dark ?? NavigationMapControlTheme.defaultDark,
);