NavigationMyLocationWidget constructor

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

Implementation

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