MapPicker constructor
MapPicker({
- Key? key,
- LatLng? startLocation,
- required Widget primaryPickerMark,
- required Widget secondaryPickerMark,
- required void onPin(
- PinData pinData
- String? inputText,
- MapType? mapType,
- required String apiKey,
- String? mapLanguage,
- Widget? inputIcon,
- Color? textInputColor,
- Widget? sendBtnIcon,
- String? searchBoxHintText,
- 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);