SliverSpacing constructor

const SliverSpacing({
  1. Key? key,
  2. double? bottomPadding,
  3. bool? handleSafeArea,
  4. void onKeyboardHeightChanged(
    1. double height
    )?,
})

Creates a SliverSpacing widget.

Implementation

const SliverSpacing({
  super.key,
  this.bottomPadding,
  this.handleSafeArea,
  this.onKeyboardHeightChanged,
});