copyWith method
Implementation
UnrestrictedUserEmail copyWith({String? accountId, String? email}) {
return UnrestrictedUserEmail(
accountId: accountId ?? this.accountId,
email: email ?? this.email,
);
}
UnrestrictedUserEmail copyWith({String? accountId, String? email}) {
return UnrestrictedUserEmail(
accountId: accountId ?? this.accountId,
email: email ?? this.email,
);
}