ChartCard constructor

const ChartCard({
  1. Key? key,
  2. required Widget child,
  3. required ChartThemeData themeData,
  4. EdgeInsetsGeometry? padding,
  5. EdgeInsetsGeometry? margin,
  6. VoidCallback? onTap,
})

Implementation

const ChartCard({
  Key? key,
  required this.child,
  required this.themeData,
  this.padding,
  this.margin,
  this.onTap,
}) : super(key: key);