incrementIntUserProfileBy static method

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

Increment a user profile of type int by the specified value.

Implementation

static Future<void> incrementIntUserProfileBy(final String key, final int value) async {
  await _invokeMethod('incrementIntUserProfileBy', [key, value]);
}