changeValue method
Implementation
@override
Future<PresentationModel?> changeValue(
String documentId, String fieldName, num changeByThisValue) {
var change = FieldValue.increment(changeByThisValue);
return presentationCollection
.doc(documentId)
.update({fieldName: change}).then((v) => get(documentId));
}