CandleSticksStyle constructor

CandleSticksStyle({
  1. required Color borderColor,
  2. required Color background,
  3. required Color primaryBull,
  4. required Color secondaryBull,
  5. required Color primaryBear,
  6. required Color secondaryBear,
  7. required Color hoverIndicatorBackgroundColor,
  8. required Color primaryTextColor,
  9. required Color secondaryTextColor,
  10. required Color mobileCandleHoverColor,
  11. required Color loadingColor,
  12. required Color toolBarColor,
})

Implementation

CandleSticksStyle({
  required this.borderColor,
  required this.background,
  required this.primaryBull,
  required this.secondaryBull,
  required this.primaryBear,
  required this.secondaryBear,
  required this.hoverIndicatorBackgroundColor,
  required this.primaryTextColor,
  required this.secondaryTextColor,
  required this.mobileCandleHoverColor,
  required this.loadingColor,
  required this.toolBarColor,
});