copyWith method
Implementation
StreamingItem copyWith({
int? id,
String? type,
String? description,
String? metadata,
bool? enabled,
List<Media>? media,
}) =>
StreamingItem(
id: id ?? this.id,
type: type ?? this.type,
description: description ?? this.description,
metadata: metadata ?? this.metadata,
enabled: enabled ?? this.enabled,
media: media ?? this.media,
);