getUserData method

Future<QAccount> getUserData()

Implementation

Future<QAccount> getUserData() async {
  var t2 = getUserDataImpl().run(_dio);
  return t2.map((s) {
    var res = s.run(_storage);
    _storage = res.second;
    return res.first;
  }).runOrThrow();
}