NativeChartView constructor

const NativeChartView({
  1. Key? key,
  2. required ChartController controller,
  3. double? width,
  4. double? height,
  5. Map<String, dynamic>? creationParams,
})

Implementation

const NativeChartView({
  super.key,
  required this.controller,
  this.width,
  this.height,
  this.creationParams,
});