UiRefreshIndicator constructor

const UiRefreshIndicator({
  1. Key? key,
  2. required UiRefreshIndicatorDetails details,
  3. @Deprecated('UiRefreshIndicator is glyph-only. Use a custom ' 'UiRefreshIndicatorBuilder for labelled surfaces. Scheduled for removal in 1.0.0.') bool showLabel = false,
})

Implementation

const UiRefreshIndicator({
  super.key,
  required this.details,
  @Deprecated(
    'UiRefreshIndicator is glyph-only. Use a custom '
    'UiRefreshIndicatorBuilder for labelled surfaces. Scheduled for removal in 1.0.0.',
  )
  this.showLabel = false,
});