toListCSVFile method

  1. @override
ListCSVFile toListCSVFile()
override

Implementation

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