BuilderWrap<T> constructor

const BuilderWrap<T>(
  1. Iterable<T> children,
  2. Widget builder(
    1. T
    ), {
  3. Key? key,
  4. bool inverted = false,
  5. bool dense = false,
})

Implementation

const BuilderWrap(
  this.children,
  this.builder, {
  super.key,
  this.inverted = false,
  this.dense = false,
});