SemanticsWrapper.progressIndicator constructor

SemanticsWrapper.progressIndicator({
  1. required dynamic hint,
  2. required dynamic value,
})

Wrapper that governs a progress indicator

Implementation

SemanticsWrapper.progressIndicator({required hint, required value})
    : assert(hint != "" && value != null),
      super(
          label: 'Progress Indicator',
          value: 'Progress: $value}',
          hint: hint,
          selected: false,
          focusable: true);