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