copyWith method
Implementation
Media copyWith({
String? mid,
String? type,
String? label,
int? ageMs,
}) =>
Media(
mid: mid ?? this.mid,
type: type ?? this.type,
label: label ?? this.label,
ageMs: ageMs ?? this.ageMs,
);