WheelLabelStyle constructor

const WheelLabelStyle({
  1. TextStyle? labelStyle,
  2. double angle = 0.0,
  3. TextOverflow overflow = TextOverflow.clip,
  4. int? maxLines = 1,
})

Creates a WheelLabelStyle.

Implementation

const WheelLabelStyle({
  this.labelStyle,
  this.angle = 0.0,
  this.overflow = TextOverflow.clip,
  this.maxLines = 1,
});