HeatMapQuantityOfEvent constructor

HeatMapQuantityOfEvent({
  1. bool enabled = false,
  2. double? paddingTop,
  3. double? paddingBottom,
  4. double? paddingRight,
  5. double? paddingLeft,
  6. TextStyle? textStyle,
})

Implementation

HeatMapQuantityOfEvent({
  this.enabled = false,
  this.paddingTop,
  this.paddingBottom,
  this.paddingRight,
  this.paddingLeft,
  TextStyle? textStyle,
}) : textStyle = textStyle ??
          const TextStyle(color: Color(0xff000000), fontSize: 35);