ktoJsonT method
List
listT.ktoJsonT((value) => item.toJson(value))
Implementation
String ktoJsonT(Map<String, dynamic> Function(T value) toJsonT) {
List<T>? file = this;
var dataList = file?.map((value) {
return toJsonT.call(value);
}).toList() ??
[];
return dataList.ktoJson();
}