copyWith method

SendEmailAddressVerificationCode copyWith({
  1. String? emailAddress,
})

Implementation

SendEmailAddressVerificationCode copyWith({
  String? emailAddress,
}) => SendEmailAddressVerificationCode(
  emailAddress: emailAddress ?? this.emailAddress,
);