copyWith method
LocationPickerState
copyWith({
- LocationEntity? locationEntity,
- String? reportMsg,
- bool? isLoading,
Implementation
LocationPickerState copyWith({
LocationEntity? locationEntity,
String? reportMsg,
bool? isLoading,
}) => LocationPickerState(
locationEntity: locationEntity ?? this.locationEntity,
reportMsg: reportMsg ?? this.reportMsg,
isLoading: isLoading ?? this.isLoading,
);