How to parse the json which contains array of array values using flutter. I know that this json format is not a valid but unfortunately I need to parse it.
{
ModuleEId: [
[
"Test Equipment - R&D",
"GPU_0001_180 KVA Dual AC 28.5V DC"
],
[
"Test Equipment - Electronics",
"GPU_0004_180 KVA Dual AC 28.5 V DC"
]
]
}
((((jsonDecode(string)['ModuleId'] as List)[0] as List)[0]) as String) == "Test Equipment - R&D"