ScrollButton constructor

const ScrollButton({
  1. Key? key,
  2. required bool toBottom,
  3. required bool isVisible,
  4. required dynamic onTap(),
  5. bool isAnonymous = false,
})

Implementation

const ScrollButton(
    {super.key,
    required this.toBottom,
    required this.isVisible,
    required this.onTap,
    this.isAnonymous = false});