requestLCsv function
Downloads the TSV file from specified url
and returns the parsed data
Implementation
Future<Table> requestLCsv(String url,
{String fieldSep = ',',
String textSep = '"',
bool multiline = true,
int headerRow = 0}) async {
final client = Client();
final Response resp = await client.get(Uri.parse(url));
return parseLCsv(resp.body,
fieldSep: fieldSep, textSep: textSep, multiline: multiline);
}