copyWith method

ContentMetadataCurrentuserExpandable copyWith({
  1. String? favourited,
  2. String? lastmodified,
  3. String? lastcontributed,
  4. String? viewed,
  5. String? scheduled,
})

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,
  );
}