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