copyWith method

Implementation

ContentMetadataCurrentuser copyWith(
    {ContentMetadataCurrentuserFavourited? favourited,
    ContentMetadataCurrentuserLastmodified? lastmodified,
    ContentMetadataCurrentuserLastcontributed? lastcontributed,
    ContentMetadataCurrentuserViewed? viewed,
    Map<String, dynamic>? scheduled,
    ContentMetadataCurrentuserExpandable? expandable}) {
  return ContentMetadataCurrentuser(
    favourited: favourited ?? this.favourited,
    lastmodified: lastmodified ?? this.lastmodified,
    lastcontributed: lastcontributed ?? this.lastcontributed,
    viewed: viewed ?? this.viewed,
    scheduled: scheduled ?? this.scheduled,
    expandable: expandable ?? this.expandable,
  );
}