BallPulseFooter constructor

BallPulseFooter({
  1. Key? key,
  2. Color? color = Colors.blue,
  3. Color? backgroundColor = Colors.transparent,
  4. bool enableHapticFeedback = true,
  5. bool enableInfiniteLoad = true,
  6. bool overScroll = false,
})

Implementation

BallPulseFooter({
  this.key,
  this.color = Colors.blue,
  this.backgroundColor = Colors.transparent,
  bool enableHapticFeedback = true,
  bool enableInfiniteLoad = true,
  bool overScroll = false,
}) : super(
        extent: 70.0,
        triggerDistance: 70.0,
        float: false,
        enableHapticFeedback: enableHapticFeedback,
        enableInfiniteLoad: enableInfiniteLoad,
        overScroll: overScroll,
      );