readEventsFromPath static method
Implementation
static List<RawBlockEvents> readEventsFromPath(String filePath) {
return readLines(filePath)
.map((dynamic map) => RawBlockEvents.fromJson(map))
.toList(growable: false);
}
static List<RawBlockEvents> readEventsFromPath(String filePath) {
return readLines(filePath)
.map((dynamic map) => RawBlockEvents.fromJson(map))
.toList(growable: false);
}