setUserPersona method

  1. @override
void setUserPersona(
  1. String persona
)
override

Sets the current user persona to the provided persona.

Implementation

@override
void setUserPersona(String persona) {
  throwIfNotStarted();
  methodChannel.invokeMethod(
    _setUserPersonaMethodName,
    {_userPersonaArgName: persona},
  );
}