MapPicker constructor

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

Implementation

MapPicker({
  Key? key,
  this.startLocation,
  required this.primaryPickerMark,
  required this.secondaryPickerMark,
  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);