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