refresh method

Future<void> refresh()

Refreshes the MyUser to be up to date.

Implementation

Future<void> refresh() async {
  Log.debug('refresh()', '$runtimeType');
  await _myUserRepository.refresh();
}