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