fromFile static method
Accepts a path to a file in ndjson format. It opens the file and then calls the from NdJson function
Implementation
static Future<List<Resource>> fromFile(String path) async {
final String file = await File(path).readAsString();
return fromNdJson(file);
}