MapPicker constructor

MapPicker({
  1. Key? key,
  2. LatLng? startLocation,
  3. required void onPin(
    1. PinData pinData
    ),
  4. String? inputText,
  5. MapType? mapType,
  6. required String apiKey,
  7. String? mapLanguage,
  8. Widget? inputIcon,
  9. Color? textInputColor,
  10. Widget? sendBtnIcon,
  11. String? searchBoxHintText,
  12. bool? userMapType,
})

Implementation

MapPicker({
  Key? key,
  this.startLocation,
  required this.onPin,
  this.inputText,
  this.mapType,
  required this.apiKey,
  this.mapLanguage,
  this.inputIcon,
  this.textInputColor,
  this.sendBtnIcon,
  this.searchBoxHintText,
  this.userMapType,
}) : super(key: key);