SliverClip constructor

const SliverClip({
  1. Key? key,
  2. required Widget child,
  3. bool clipOverlap = true,
})

Implementation

const SliverClip({
  Key? key,
  required Widget child,
  this.clipOverlap = true,
}) : super(key: key, child: child);