updateUserStatus method
- UserTextStatus? status
Updates or resets the MyUser.status field of the authenticated MyUser.
Implementation
Future<void> updateUserStatus(UserTextStatus? status) async {
Log.debug('updateUserStatus($status)', '$runtimeType');
await _myUserRepository.updateUserStatus(status);
}