copyWith method

Implementation

CheckAuthenticationEmailCode copyWith({
  EmailAddressAuthentication? code,
}) =>
    CheckAuthenticationEmailCode(
      code: code ?? this.code,
    );