CustomRefreshIndicator constructor

const CustomRefreshIndicator({
  1. Key? key,
  2. required Widget child,
  3. required void onRefresh()?,
  4. required Color color,
  5. required Color backgroundColor,
})

Implementation

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