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