XSliverPersistentWidgetParams constructor

XSliverPersistentWidgetParams({
  1. required SSRWidget child,
  2. required double minExtent,
  3. required double maxExtent,
  4. SSRWidget? floatingChild,
  5. bool isSimple = false,
  6. bool isPinned = false,
  7. bool isFloating = false,
})

Implementation

XSliverPersistentWidgetParams({
  required this.child,
  required this.minExtent,
  required this.maxExtent,
  this.floatingChild,
  this.isSimple = false,
  this.isPinned = false,
  this.isFloating = false,
});