DefaultRefreshIndicator constructor

const DefaultRefreshIndicator({
  1. Key? key,
  2. String? text,
  3. TextStyle? textStyle = const TextStyle(color: Color(0xff555555)),
  4. Widget? icon,
  5. double height = defaultIndicatorHeight,
})

Implementation

const DefaultRefreshIndicator({
  super.key,
  this.text,
  this.textStyle = const TextStyle(color: Color(0xff555555)),
  this.icon,
  this.height = defaultIndicatorHeight,
});