SliverCard constructor

const SliverCard({
  1. Key? key,
  2. Color? color,
  3. Color? shadowColor,
  4. double? elevation,
  5. ShapeBorder? shape,
  6. EdgeInsetsGeometry? margin,
  7. Clip? clipBehavior,
  8. Widget? sliver,
  9. double? bufferExtent,
})

Creates a SliverCard.

Implementation

const SliverCard({
  super.key,
  this.color,
  this.shadowColor,
  this.elevation,
  this.shape,
  this.margin,
  this.clipBehavior,
  this.sliver,
  this.bufferExtent,
});