requestLTsv function

Future<Table> requestLTsv(
  1. String url
)

Downloads the TSV file from specified url and returns the parsed data

Implementation

Future<Table> requestLTsv(String url) async {
  final client = Client();
  final Response resp = await client.get(Uri.parse(url));
  return parseLTsv(resp.body);
}