status method
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}"}');
}
}