PBExpression constructor
PBExpression({
- String? key,
- String? identity,
- String? rawString,
- PBScaffold? scaffold,
- PBCenter? center,
- PBText? text,
- PBAppBar? appBar,
- PBColumn? column,
- PBElevatedButton? elevatedButton,
Implementation
factory PBExpression({
$core.String? key,
$core.String? identity,
$core.String? rawString,
PBScaffold? scaffold,
PBCenter? center,
PBText? text,
PBAppBar? appBar,
PBColumn? column,
PBElevatedButton? elevatedButton,
}) {
final result = create();
if (key != null) result.key = key;
if (identity != null) result.identity = identity;
if (rawString != null) result.rawString = rawString;
if (scaffold != null) result.scaffold = scaffold;
if (center != null) result.center = center;
if (text != null) result.text = text;
if (appBar != null) result.appBar = appBar;
if (column != null) result.column = column;
if (elevatedButton != null) result.elevatedButton = elevatedButton;
return result;
}