copyWith method

Implementation

CheckEmailAddressVerificationCode copyWith({
  String? code,
}) =>
    CheckEmailAddressVerificationCode(
      code: code ?? this.code,
    );