Csv constructor

Csv({
  1. List<CsvRow>? dataRows,
  2. List<String>? headers,
})

Implementation

Csv({
  this.dataRows,
  this.headers,
});