syncInfo method

Future<SyncInfo> syncInfo()

Implementation

Future<SyncInfo> syncInfo() async {
  var response = await client.sendRequest('stats.syncInfo', []);
  return SyncInfo.fromJson(response);
}