changeValue method

  1. @override
Future<SimpleTextModel?> changeValue(
  1. String documentId,
  2. String fieldName,
  3. num changeByThisValue
)
override

Implementation

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