setUserAttributeWithDouble static method

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

Implementation

static Future<void> setUserAttributeWithDouble(
    String key, double value) async {
  _channel.invokeMethod('setUserAttributeWithDouble',
      <String, dynamic>{'key': key, 'value': value});
}