setUserAttribute static method

Future<void> setUserAttribute(
  1. String attributeName,
  2. dynamic userAttributeValue
)

Implementation

static Future<void> setUserAttribute(
    String attributeName, dynamic userAttributeValue) async {
  return await _channel.invokeMethod(METHOD_NAME_SET_USER_ATTRIBUTE,
      {ATTRIBUTE_NAME: attributeName, ATTRIBUTES: userAttributeValue});
}