NavigationParkingWidget constructor

const NavigationParkingWidget({
  1. required ParkingController controller,
  2. Key? key,
  3. RoundedCorners roundedCorners = const RoundedCorners.all(),
  4. NavigationMapControlTheme? light,
  5. 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,
      );