LabelStyle constructor

const LabelStyle({
  1. bool show = true,
  2. double rotate = 0,
  3. TextStyle textStyle = const TextStyle(color: Colors.black87, fontSize: 13, fontWeight: FontWeight.normal),
  4. AreaStyle? decoration,
  5. OverFlow overFlow = OverFlow.cut,
  6. String ellipsis = '',
  7. GuideLine guideLine = const GuideLine(),
  8. double lineMargin = 4,
  9. double minAngle = 0,
})

Implementation

const LabelStyle({
  this.show = true,
  this.rotate = 0,
  this.textStyle = const TextStyle(color: Colors.black87, fontSize: 13, fontWeight: FontWeight.normal),
  this.decoration,
  this.overFlow = OverFlow.cut,
  this.ellipsis = '',
  this.guideLine = const GuideLine(),
  this.lineMargin = 4,
  this.minAngle = 0,
});