TMapPinning constructor

const TMapPinning({
  1. Key? key,
  2. String? placeholder,
  3. required String label,
  4. TextEditingController? addressController,
  5. LatLng? initialCoordinates,
  6. ValueChanged<LatLng>? onCoordinatesChanged,
  7. ValueChanged<String>? onAddressChanged,
  8. bool disabled = false,
  9. String? tag,
  10. String? helperText,
  11. bool isRequired = false,
  12. String? info,
  13. bool clearable = false,
  14. TInputFieldTheme? theme,
  15. VoidCallback? onTap,
  16. VoidCallback? onShow,
  17. VoidCallback? onHide,
  18. String? googleMapApiKey,
  19. TLoadListener<TPlaceResult>? onLoad,
})

Implementation

const TMapPinning({
  super.key,
  this.placeholder,
  required this.label,
  this.addressController,
  this.initialCoordinates,
  this.onCoordinatesChanged,
  this.onAddressChanged,
  this.disabled = false,
  this.tag,
  this.helperText,
  this.isRequired = false,
  this.info,
  this.clearable = false,
  this.theme,
  this.onTap,
  this.onShow,
  this.onHide,
  this.googleMapApiKey,
  this.onLoad,
});