removeUserAttribute method Null safety

void removeUserAttribute(
  1. {required String key}
)

Removes the user attribute with the given key.

  • Parameter key The key that uniquely identifies the user attribute.

Implementation

static void removeUserAttribute({
  required String key,
}) {
  Logger.called('removeUserAttribute');
  _register.removeUserAttribute(key: key);
}