NavigationZoomWidget constructor

const NavigationZoomWidget({
  1. required ZoomController controller,
  2. Key? key,
  3. NavigationMapControlTheme? light,
  4. NavigationMapControlTheme? dark,
})

Implementation

const NavigationZoomWidget({
  required this.controller,
  super.key,
  NavigationMapControlTheme? light,
  NavigationMapControlTheme? dark,
}) : super(
        light: light ?? NavigationMapControlTheme.defaultLight,
        dark: dark ?? NavigationMapControlTheme.defaultDark,
      );