copyWith method

CreditAuditCopyTokenRemoveResponse copyWith({
  1. bool? removed,
  2. String? requestId,
})

Implementation

CreditAuditCopyTokenRemoveResponse copyWith(
    {bool? removed, String? requestId}) {
  return CreditAuditCopyTokenRemoveResponse(
      removed: removed ?? this.removed,
      requestId: requestId ?? this.requestId);
}