ChartStyle constructor

const ChartStyle({
  1. Key? key,
  2. required Widget child,
  3. ChartTheme? theme,
  4. ChartBehavior<ChartState>? behavior,
  5. ChartAnimation? animation,
})

Implementation

const ChartStyle({
  super.key,
  required super.child,
  this.theme,
  this.behavior,
  this.animation,
});