EmailDTO copyWith({String? name, String? email}) { return EmailDTO(name: name ?? this.name, email: email ?? this.email); }