Dart中的类型转换总结:

1.Dart中数组转换为字符串:join

var a=[1,2,3,4];

var str=a.join(',');

原文地址:https://www.cnblogs.com/yiweiyihang/p/11805219.html