removeUserAttributes static method

Future<void> removeUserAttributes(
  1. List<String> attributeName
)

Remove the given user attributes. If the attribute does not exist, then user profile module ignores the event. No shared state or user profile response event is dispatched If the attribute exists, then the User Attribute will be removed, shared state is updated and user profile response event is dispatched

  • Parameter attributeNames: attribute keys/names which have to be removed.

Implementation

/// - Parameter attributeNames: attribute keys/names which have to be removed.
static Future<void> removeUserAttributes(List<String> attributeName) =>
    _channel.invokeMethod<void>('removeUserAttributes', attributeName);