updateUserPresence method
- UserPresence presence
Updates MyUser.presence to the provided value.
Implementation
Future<void> updateUserPresence(UserPresence presence) async {
Log.debug('updateUserPresence($presence)', '$runtimeType');
await _myUserRepository.updateUserPresence(presence);
}