copyWith method

Implementation

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