sessionRestore method

Future sessionRestore()

Implementation

Future sessionRestore() async {
  try {
    var r = await request('/session/restore');
    await _onLogged();
    return r;
  } catch (e) {
    console.error('FALLA HACIENDO RECUPERANDO LA SESSION\n\n$e');
  }
}