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