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