copyWith method
Implementation
AutoCompleteSuggestion copyWith({String? displayName, String? value}) {
return AutoCompleteSuggestion(
displayName: displayName ?? this.displayName,
value: value ?? this.value,
);
}
AutoCompleteSuggestion copyWith({String? displayName, String? value}) {
return AutoCompleteSuggestion(
displayName: displayName ?? this.displayName,
value: value ?? this.value,
);
}