copyWith method

UnrestrictedUserEmail copyWith({
  1. String? accountId,
  2. String? email,
})

Implementation

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