copyWithWrapped method
Implementation
PhoneNumber copyWithWrapped(
{Wrapped<String>? data,
Wrapped<bool>? primary,
Wrapped<enums.PhoneNumberType>? type}) {
return PhoneNumber(
data: (data != null ? data.value : this.data),
primary: (primary != null ? primary.value : this.primary),
type: (type != null ? type.value : this.type));
}