decrementIntUserProfileBy static method

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

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

Implementation

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