ChartCard constructor

const ChartCard({
  1. Key? key,
  2. required ChartConfig config,
  3. required ChartWidgetController controller,
  4. required Widget child,
  5. void onExported(
    1. String format,
    2. Uint8List bytes
    )?,
})

Implementation

const ChartCard({
  super.key,
  required this.config,
  required this.controller,
  required this.child,
  this.onExported,
});