PBScaffold constructor
PBScaffold({
- PBExpression? appBar,
- 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;
}