profileIncrementValue static method

Future<void> profileIncrementValue(
  1. String key,
  2. num value
)

Increment given num value. The value should be in positive range

Implementation

static Future<void> profileIncrementValue(String key, num value) async {
  return await _dartToNativeMethodChannel
      .invokeMethod('profileIncrementValue', {'key': key, 'value': value});
}