SliverFluidMargin constructor

const SliverFluidMargin({
  1. Key? key,
  2. required Widget sliver,
  3. EdgeInsets? margin,
  4. bool fluid = true,
  5. double? maxWidth,
})

Implementation

const SliverFluidMargin({
  Key? key,
  required Widget sliver,
  this.margin,
  this.fluid = true,
  this.maxWidth,
}) : super(key: key, child: sliver);