clearUserPersona method

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

Clears the custom user persona, if it is set.

Implementation

@override
void clearUserPersona(String persona) {
  _runCatching(
    'clearUserPersona',
    () => _platform.clearUserPersona(persona),
  );
}