tapi method
Implementation
Future<Tapi> tapi() async {
try {
return Tapi.fromJson(await client.get(api('network/tapi')));
} on ExplorerException catch (e) {
throw ExplorerException(
code: e.code, message: '{"tapi": "${e.message}"}');
}
}