status method

Future<Status> status()

Implementation

Future<Status> status() async {
  try {
    return Status.fromJson(await client.get(api('status')));
  } on ExplorerException catch (e) {
    throw ExplorerException(
        code: e.code, message: '{"status": "${e.message}"}');
  }
}