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