copyWith method
Implementation
DynamicWidgetEntity copyWith({
String? documentID,
String? appId,
String? description,
String? content,
BackgroundEntity? background,
StorageConditionsEntity? conditions,
}) {
return DynamicWidgetEntity(
appId: appId ?? this.appId,
description: description ?? this.description,
content: content ?? this.content,
background: background ?? this.background,
conditions: conditions ?? this.conditions,
);
}