decrementUserAttribute method

dynamic decrementUserAttribute(
  1. String attributeKey, [
  2. double attributeValue = 1
])

Implementation

decrementUserAttribute(String attributeKey, [double attributeValue = 1]) {
  _channel.invokeMethod("decrementUserAttribute", <String, dynamic>{
    'attributeKey': attributeKey,
    'attributeValue': attributeValue
  });
}