Creates a list of lists with a tuple of the language name and the bytes.
List<List<dynamic>> toList() { final out = <List<dynamic>>[]; for (final key in info.keys) { out.add([key, info[key]]); } return out; }