ValueLayoutBuilder<T> constructor

const ValueLayoutBuilder<T>({
  1. Key? key,
  2. required ValueLayoutWidgetBuilder<T> builder,
})

Creates a widget that defers its building until layout.

Implementation

const ValueLayoutBuilder({
  Key? key,
  required ValueLayoutWidgetBuilder<T> builder,
})  : super(key: key, builder: builder);