ChartExportResult constructor

const ChartExportResult({
  1. required ChartExportFormat format,
  2. required String mimeType,
  3. required String filename,
  4. Uint8List? bytes,
  5. String? text,
  6. String? error,
  7. Duration? duration,
})

Implementation

const ChartExportResult({
  required this.format,
  required this.mimeType,
  required this.filename,
  this.bytes,
  this.text,
  this.error,
  this.duration,
});