BasePageState<Model extends BaseUIModel>.build constructor

BasePageState<Model extends BaseUIModel>.build(
  1. Model m,
  2. void f(
    1. Model m
    )
)

Builds the page based on the specified model

Implementation

BasePageState.build(Model m, void Function(Model m) f) {
  f(m);
}