copyWith method
Implementation
ContactInfo copyWith({
String? type,
String? displayText,
String? value,
Optional<String?>? comment
}) {
return ContactInfo(
type: type ?? this.type,
displayText: displayText ?? this.displayText,
value: value ?? this.value,
comment: comment != null ? comment.value : this.comment
);
}