toListCSVFile method
Implementation
@override
ListCSVFile toListCSVFile() => ListCSVFile(
header: header,
records: records
.map((e) => toListRecord(header, e))
.toList(growable: false),
);
@override
ListCSVFile toListCSVFile() => ListCSVFile(
header: header,
records: records
.map((e) => toListRecord(header, e))
.toList(growable: false),
);