updateUserAttributes static method

Future<void> updateUserAttributes(
  1. Map<String, Object> attributeMap
)

Updates user attributes. If the attribute does not exist, it will be created. If the attribute already exists, then the value will be updated.

  • Parameter attributeDict: the dictionary containing attribute key-value pairs

Implementation

static Future<void> updateUserAttributes(Map<String, Object> attributeMap) =>
    _channel.invokeMethod<void>('updateUserAttributes', attributeMap);