updateEntity method
Implementation
@override
Future<DynamicWidgetEntity> updateEntity(
String documentID, DynamicWidgetEntity value) {
return dynamicWidgetCollection
.doc(documentID)
.update(value.toDocument())
.then((_) => value);
}