copyWith method
Implementation
PhoneNumber copyWith(
{String? data, bool? primary, enums.PhoneNumberType? type}) {
return PhoneNumber(
data: data ?? this.data,
primary: primary ?? this.primary,
type: type ?? this.type);
}
PhoneNumber copyWith(
{String? data, bool? primary, enums.PhoneNumberType? type}) {
return PhoneNumber(
data: data ?? this.data,
primary: primary ?? this.primary,
type: type ?? this.type);
}