setUserIdentifier method

  1. @override
void setUserIdentifier(
  1. String id
)
override

Sets the current user identifier to the provided id.

Implementation

@override
void setUserIdentifier(String id) {
  throwIfNotStarted();
  methodChannel
      .invokeMethod(_setUserIdentifierMethodName, {_userIdArgName: id});
}