LayoutCallbackBuilder constructor

const LayoutCallbackBuilder({
  1. Key? key,
  2. required LayoutAfterCallback layoutCallback,
  3. required LayoutWidgetBuilder builder,
})

Creates a widget that defers its building until layout.

The builder argument must not be null.

Implementation

const LayoutCallbackBuilder({
  Key? key,
  required this.layoutCallback,
  required LayoutWidgetBuilder builder,
}) : super(key: key, builder: builder);