setUserAttributeWithBoolean static method

Future<void> setUserAttributeWithBoolean(
  1. String key,
  2. bool value
)

Implementation

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