i have the folling type of List
List<({String name, String path, List<({int start, String name})> marks})> list;
and i want to encode it to a json format and later decode that string back into this type of list.
What is the easist way to do that? json_encode(list)
doesn’t work…
2