getUserAttributeForKey static method

Future<String?> getUserAttributeForKey(
  1. String key
)

Returns the user attribute associated with a given key.

Implementation

static Future<String?> getUserAttributeForKey(String key) {
  return _host.getUserAttributeForKey(key);
}