我以JSON格式从服务器获取消息,
{test:test, 2:test, 4:5}
当我尝试将其添加到Map中时:
var s = new Map<dynamic, dynamic>();
s = ResponseFromServer;
我尝试添加json.decode,但仍然出现相同的错误:
FormatException: SyntaxError: Unexpected token t in JSON at position 1
我知道需要使用引号,但是如何简单地添加引号或读取值?