PBScaffold constructor

PBScaffold({
  1. PBExpression? appBar,
  2. PBExpression? body,
})

Implementation

factory PBScaffold({
  PBExpression? appBar,
  PBExpression? body,
}) {
  final result = create();
  if (appBar != null) result.appBar = appBar;
  if (body != null) result.body = body;
  return result;
}