increment method

Future<void> increment(
  1. String profileId,
  2. String property,
  3. num value
)

Increments a numeric property of the profile by value.

Implementation

Future<void> increment(String profileId, String property, num value) {
  throw UnimplementedError('increment() has not been implemented.');
}