update method
Update a PostLikeModel
Implementation
@override
Future<PostLikeModel> update(PostLikeModel value) {
return reference.update(value).then((newValue) {
fullCache[value.documentID] = newValue;
return newValue;
});
}
Update a PostLikeModel
@override
Future<PostLikeModel> update(PostLikeModel value) {
return reference.update(value).then((newValue) {
fullCache[value.documentID] = newValue;
return newValue;
});
}