TouchBarScrubberLabel constructor

TouchBarScrubberLabel(
  1. String label, {
  2. Color? textColor,
  3. String? accessibilityLabel,
})

Implementation

TouchBarScrubberLabel(
  String label, {
  Color? textColor,
  String? accessibilityLabel,
}) {
  this._label = label;
  this._textColor = textColor;
  this._accessibilityLabel = accessibilityLabel;
}