ExportableChart constructor

const ExportableChart({
  1. Key? key,
  2. required ExportableChartController controller,
  3. required Widget child,
})

Implementation

const ExportableChart({
  super.key,
  required this.controller,
  required this.child,
});