update method
Implementation
@override
Future<FeedMenuModel> update(FeedMenuModel value) {
return feedMenuCollection
.doc(value.documentID)
.update(value.toEntity(appId: appId).toDocument())
.then((_) => value);
}
@override
Future<FeedMenuModel> update(FeedMenuModel value) {
return feedMenuCollection
.doc(value.documentID)
.update(value.toEntity(appId: appId).toDocument())
.then((_) => value);
}