DefaultScrollToBottom constructor

const DefaultScrollToBottom({
  1. required ScrollController scrollController,
  2. bool readOnly = false,
  3. Color? backgroundColor,
  4. Color? textColor,
  5. double? bottom = 10.0,
  6. double? left = 0.0,
  7. double? right = 0.0,
  8. double? top,
  9. double height = 30.0,
  10. double width = 30.0,
  11. double elevation = 5,
  12. IconData icon = Icons.arrow_downward,
  13. double iconSize = 18,
  14. void onScrollToBottomPress()?,
  15. Key? key,
})

Implementation

const DefaultScrollToBottom({
  required this.scrollController,
  this.readOnly = false,
  this.backgroundColor,
  this.textColor,
  this.bottom = 10.0,
  this.left = 0.0,
  this.right = 0.0,
  this.top,
  this.height = 30.0,
  this.width = 30.0,
  this.elevation = 5,
  this.icon = Icons.arrow_downward,
  this.iconSize = 18,
  this.onScrollToBottomPress,
  Key? key,
}) : super(key: key);