copyWith method
Implementation
FaderEntity copyWith({
String? documentID,
String? appId,
String? description,
int? animationMilliseconds,
int? imageSeconds,
List<ListedItemEntity>? items,
BackgroundEntity? background,
StorageConditionsEntity? conditions,
}) {
return FaderEntity(
appId: appId ?? this.appId,
description: description ?? this.description,
animationMilliseconds:
animationMilliseconds ?? this.animationMilliseconds,
imageSeconds: imageSeconds ?? this.imageSeconds,
items: items ?? this.items,
background: background ?? this.background,
conditions: conditions ?? this.conditions,
);
}