fromJson function

List<SymbolInfo> fromJson(
  1. List json
)

Parse the output of --print-instructions-sizes-to saved in the given file input.

Implementation

List<SymbolInfo> fromJson(List<dynamic> json) {
  return json
      .cast<Map<String, dynamic>>()
      .map(SymbolInfo._fromJson)
      .toList(growable: false);
}