getUserAttributes static method

Future<String> getUserAttributes(
  1. List<String> attributeKeys
)

Get the user attributes as JSON string

  • Parameters:
    • attributeNames: Attribute keys/names which will be used to retrieve user attributes

Implementation

static Future<String> getUserAttributes(List<String> attributeKeys) =>
    _channel
        .invokeMethod<String>('getUserAttributes', attributeKeys)
        .then((value) => value!);