AddressDisplayData constructor
const
AddressDisplayData({
- required String? formattedAddress,
- required ReverseGeocodingResponse? fullResponse,
- required bool isLoading,
- required bool hasError,
- required VoidCallback? openSearchScreen,
- required bool isSearchEnabled,
Creates address-display data passed to AddressDisplayBuilder.
All fields are required so custom builders can render a complete UI state.
Implementation
const AddressDisplayData({
required this.formattedAddress,
required this.fullResponse,
required this.isLoading,
required this.hasError,
required this.openSearchScreen,
required this.isSearchEnabled,
});