increment method

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

Increments a numeric property of the profile by value.

Implementation

@override
Future<void> increment(String profileId, String property, num value) =>
    _guard('increment', <String, Object?>{
      'profileId': profileId,
      'property': property,
      'value': value,
    });