您的字符串看起来像有效的JSON,因此它应该对您有用:
import 'dart:convert';...var String a = '["one", "two", "three", "four"]';var ab = json.depre(a);print(ab[0]); // return ["one"

您的字符串看起来像有效的JSON,因此它应该对您有用:
import 'dart:convert';...var String a = '["one", "two", "three", "four"]';var ab = json.depre(a);print(ab[0]); // return ["one"