ChartExportRequest.xlsxRows constructor

const ChartExportRequest.xlsxRows({
  1. required List<List<Object?>> rows,
  2. String? filename,
  3. String sheetName = 'Chart Data',
  4. Duration? timeout,
  5. ChartExportCancellationToken? cancellationToken,
})

Implementation

const ChartExportRequest.xlsxRows({
  required List<List<Object?>> this.rows,
  this.filename,
  this.sheetName = 'Chart Data',
  this.timeout,
  this.cancellationToken,
}) : format = ChartExportFormat.xlsx,
     config = null,
     jsonConfig = null,
     boundaryKey = null,
     categoryLabels = null,
     delimiter = ',',
     lineEnding = '\r\n',
     pixelRatio = 2.0,
     jpegQuality = 90,
     jpegBackgroundColor = Colors.white;