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