tapi method

Future<Tapi> tapi()

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