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