toList method

List<List> toList()

Creates a list of lists with a tuple of the language name and the bytes.

Implementation

List<List<dynamic>> toList() {
  final out = <List<dynamic>>[];
  for (final key in info.keys) {
    out.add([key, info[key]]);
  }
  return out;
}