copyWith method
Copies this mail address with the given values
Implementation
MailAddress copyWith({String? personalName, String? email}) =>
MailAddress(personalName ?? this.personalName, email ?? this.email);
Copies this mail address with the given values
MailAddress copyWith({String? personalName, String? email}) =>
MailAddress(personalName ?? this.personalName, email ?? this.email);