copyWith method

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

Implementation

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