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