AppBuilder<T extends Object?> constructor

const AppBuilder<T extends Object?>({
  1. required RunnerBuilder<T> builder,
  2. Widget? child,
  3. InitializeFunctions<T>? preInitialize,
  4. Key? key,
})

AppBuilder main widget to use in WidgetConfiguration.

builder - {@macro RunnerBuilder}

child - {@macro AppBuilder.child}

preInitialize - {@macro InitializeFunctions}

If preInitialize is null or not a Future, then the builder is called with the completed AsyncSnapshot. Otherwise creates a widget that builds itself based on the latest snapshot of interaction with a Future.

Implementation

const AppBuilder({
  required this.builder,
  this.child,
  this.preInitialize,
  Key? key,
}) : super(key: key);