MotionRefreshIndicator constructor

const MotionRefreshIndicator({
  1. Key? key,
  2. required Widget child,
  3. required Future<void> onRefresh(),
  4. Color? color,
})

Implementation

const MotionRefreshIndicator({
  super.key,
  required this.child,
  required this.onRefresh,
  this.color,
});