RefreshIndicator constructor

const RefreshIndicator({
  1. Key? key,
  2. RefreshIndicatorType? type,
  3. required AsyncCallback onRefresh,
  4. required Widget child,
})

Implementation

const RefreshIndicator({
  super.key,
  this.type,
  required this.onRefresh,
  required this.child,
});