InAppLocationMapScreen constructor

const InAppLocationMapScreen({
  1. Key? key,
  2. required void onConfirm(
    1. LocationFixResult result
    ),
  3. LocationKitBase? kit,
  4. LatLng? initialPosition,
  5. InAppLocationStrings strings = const InAppLocationStrings(),
  6. InAppLocationTheme theme = const InAppLocationTheme(),
  7. String appBarTitle = 'Set location',
  8. String? googleMapsApiKey,
  9. bool mapsEnabled = true,
  10. String? mapsSetupHint,
})

Implementation

const InAppLocationMapScreen({
  super.key,
  required this.onConfirm,
  this.kit,
  this.initialPosition,
  this.strings = const InAppLocationStrings(),
  this.theme = const InAppLocationTheme(),
  this.appBarTitle = 'Set location',
  this.googleMapsApiKey,
  this.mapsEnabled = true,
  this.mapsSetupHint,
});