incrementBy abstract method

Future<void> incrementBy(
  1. String key,
  2. int value
)

Increment custom property value by provided value. String key - property name to increment int value - value by which to increment

Implementation

Future<void> incrementBy(String key, int value);