LocationPickerPage constructor

const LocationPickerPage({
  1. Key? key,
  2. required MapType mapType,
  3. required LatLng initialCenter,
  4. required LocationAccuracy desiredAccuracy,
  5. required bool requiredGPS,
  6. required bool autoAnimateToCurrentLocation,
  7. String? title,
  8. required bool layersButtonEnabled,
  9. required double initialZoom,
  10. required FloatingActionButtonLocation floatingActionButtonLocation,
})

Implementation

const LocationPickerPage({
  Key? key,
  required this.mapType,
  required this.initialCenter,
  required this.desiredAccuracy,
  required this.requiredGPS,
  required this.autoAnimateToCurrentLocation,
  this.title,
  required this.layersButtonEnabled,
  required this.initialZoom,
  required this.floatingActionButtonLocation,
}) : super(key: key);