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