Pullable constructor

const Pullable({
  1. Key? key,
  2. required Widget child,
  3. dynamic onRefresh()?,
  4. String? headerStyle,
})

Implementation

const Pullable(
    {super.key, required this.child, this.onRefresh, this.headerStyle});