copyWith method
Implementation
ContentMetadataCurrentuserExpandable copyWith(
{String? favourited,
String? lastmodified,
String? lastcontributed,
String? viewed,
String? scheduled}) {
return ContentMetadataCurrentuserExpandable(
favourited: favourited ?? this.favourited,
lastmodified: lastmodified ?? this.lastmodified,
lastcontributed: lastcontributed ?? this.lastcontributed,
viewed: viewed ?? this.viewed,
scheduled: scheduled ?? this.scheduled,
);
}