setUserAttributeWithString static method

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

Implementation

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