decrementDoubleUserProfileBy static method

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

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

Implementation

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