ScrollToBottomOptions constructor

const ScrollToBottomOptions({
  1. bool disabled = false,
  2. bool alwaysVisible = false,
  3. VoidCallback? onScrollToBottomPress,
  4. Widget scrollToBottomBuilder(
    1. ScrollController
    )?,
  5. double bottomOffset = 72,
  6. double rightOffset = 16,
  7. bool showText = false,
  8. String buttonText = 'Scroll to bottom',
})

Implementation

const ScrollToBottomOptions({
  this.disabled = false,
  this.alwaysVisible = false,
  this.onScrollToBottomPress,
  this.scrollToBottomBuilder,
  this.bottomOffset = 72,
  this.rightOffset = 16,
  this.showText = false,
  this.buttonText = 'Scroll to bottom',
});