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