updateEntity method
Implementation
@override
Future<PostLikeEntity> updateEntity(String documentID, PostLikeEntity value) {
return postLikeCollection
.doc(documentID)
.update(value.toDocument())
.then((_) => value)
.then((v) async {
var newValue = await getEntity(documentID);
if (newValue == null) {
return value;
} else {
return newValue;
}
});
}