parseFile function

dynamic parseFile(
  1. String filePath
)

Implementation

dynamic parseFile(String filePath) async {
  var file = File(filePath);
  var content = file.readAsStringSync();
  return parseContent(content);
}