BackToTop constructor

const BackToTop({
  1. bool visible = true,
  2. void onTap()?,
  3. double right = 24,
  4. double bottom = 24,
  5. double size = 48,
  6. Key? key,
})

Implementation

const BackToTop({
  this.visible = true,
  this.onTap,
  this.right = 24,
  this.bottom = 24,
  this.size = 48,
  super.key,
});