copyWith method

Implementation

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