I have a string that looks like this when printed out:
[['20/11/2019', 'PERSONAL INFO', 'SCRITTO', 5.5, 'SI', ''], ['11/10/2019', 'PERSONAL INFO', 'SCRITTO', 9.5, 'SI', ''], ['02/10/2019', 'PERSONAL INFO', 'ORALE', 8.0, 'SI', '']]
It's already structured as a list of lists but when I run print(ing is String)
I get true (ing is the name of the string).
I already saw and tried to use the answer provided here Dart: Convert String representation of List of Lists to List of List but the smaller lists always end up without a separator. Any advice?