toJsonListT<T> static method
集合对象转json
Implementation
static String toJsonListT<T>(
List<T>? list, Map<String, dynamic> Function(T value) toJsonT) {
var dataList = list?.map((value) {
return toJsonT.call(value);
}).toList() ??
[];
return dataList.toJson();
}