incrementDoubleUserProfileBy static method

Future<void> incrementDoubleUserProfileBy(
  1. String key,
  2. double value
)

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

Implementation

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