copyWith method
Implementation
Multimedias copyWith({
String? name,
String? url,
String? contentType,
int? size,
}) =>
Multimedias(
name: name ?? this.name,
url: url ?? this.url,
contentType: contentType ?? this.contentType,
size: size ?? this.size,
);