copyWith method
      
  
DynamicWidgetModel
copyWith({ 
    
    
- String? documentID,
- String? appId,
- String? description,
- String? content,
- BackgroundModel? background,
- StorageConditionsModel? conditions,
override
    Implementation
@override
DynamicWidgetModel copyWith({
  String? documentID,
  String? appId,
  String? description,
  String? content,
  BackgroundModel? background,
  StorageConditionsModel? conditions,
}) {
  return DynamicWidgetModel(
    documentID: documentID ?? this.documentID,
    appId: appId ?? this.appId,
    description: description ?? this.description,
    content: content ?? this.content,
    background: background ?? this.background,
    conditions: conditions ?? this.conditions,
  );
}