read static method
Read entire file into CsvTable (async).
Implementation
static Future<CsvTable> read(
String path, {
CsvConfig config = const CsvConfig(),
}) async {
final content = await File(path).readAsString();
return CsvTable.parse(content, config: config);
}