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