ChartActionButtonTheme constructor

const ChartActionButtonTheme({
  1. double? height,
  2. double? fontSize,
  3. EdgeInsetsGeometry? padding,
  4. double? borderRadius,
  5. double? borderWidth,
  6. Color? lightSelectedBackgroundColor,
  7. Color? lightUnselectedBackgroundColor,
  8. Color? lightSelectedTextColor,
  9. Color? lightUnselectedTextColor,
  10. Color? lightBorderColor,
  11. Color? darkSelectedBackgroundColor,
  12. Color? darkUnselectedBackgroundColor,
  13. Color? darkSelectedTextColor,
  14. Color? darkUnselectedTextColor,
  15. Color? darkBorderColor,
})

Implementation

const ChartActionButtonTheme({
  this.height,
  this.fontSize,
  this.padding,
  this.borderRadius,
  this.borderWidth,
  // Light theme
  this.lightSelectedBackgroundColor,
  this.lightUnselectedBackgroundColor,
  this.lightSelectedTextColor,
  this.lightUnselectedTextColor,
  this.lightBorderColor,
  // Dark theme
  this.darkSelectedBackgroundColor,
  this.darkUnselectedBackgroundColor,
  this.darkSelectedTextColor,
  this.darkUnselectedTextColor,
  this.darkBorderColor,
});