setLabelStyle property

void setLabelStyle=(TextStyle value)

Sets the labelStyle for RenderLinearGaugeShapePointer.

Implementation

set setLabelStyle(TextStyle value) {
  if (value == _labelStyle) {
    return;
  }

  _labelStyle = value;
  markNeedsPaint();
}