RSliverSizedBox constructor

const RSliverSizedBox({
  1. Key? key,
  2. double? height,
  3. double? width,
  4. Widget? child,
})

Implementation

const RSliverSizedBox({
  super.key,
  this.height,
  this.width,
  this.child,
});