removeUserAttribute static method

Future<void> removeUserAttribute(
  1. String key
)

Removes a given key and its associated value from user attributes. Does nothing if a key does not exist.

Implementation

static Future<void> removeUserAttribute(String key) async {
  return _host.removeUserAttribute(key);
}