MPickerTheme constructor

MPickerTheme({
  1. required LatLng initialLocation,
  2. double zoom = 11,
  3. String? lang,
  4. String errorToFindAddress = 'Error to find this address, try again.',
  5. String errorAddressMissing = 'Error, address don\'t founded.',
  6. String withoutAddress = 'Without Address',
  7. String searchHint = 'Type here...',
  8. String searchLabel = 'Search:',
})

Implementation

MPickerTheme(
    {required this.initialLocation,
    this.zoom = 11,
    this.lang,
    this.errorToFindAddress = 'Error to find this address, try again.',
    this.errorAddressMissing = 'Error, address don\'t founded.',
    this.withoutAddress = 'Without Address',
    this.searchHint = 'Type here...',
    this.searchLabel = 'Search:'});