EmptyPlaceholder constructor

const EmptyPlaceholder({
  1. Key? key,
  2. bool sliver = false,
  3. Widget? child,
})

Implementation

const EmptyPlaceholder({
  super.key,
  this.sliver = false,
  this.child,
});