explorerVersion method
Implementation
Future<String> explorerVersion() async {
try {
return await client.get(api('status'), getVersion: true);
} on ExplorerException catch (e) {
throw ExplorerException(
code: e.code, message: '{"explorerVersion": "${e.message}"}');
}
}