decrementUserAttribute static method

Future<void> decrementUserAttribute(
  1. String key, {
  2. int value = 1,
})

Implementation

static Future<void> decrementUserAttribute(String key,
    {int value = 1}) async {
  _channel.invokeMethod('decrementUserAttribute',
      <String, dynamic>{'key': key, 'value': value});
}