PBExpression constructor

PBExpression({
  1. String? key,
  2. String? identity,
  3. String? rawString,
  4. PBScaffold? scaffold,
  5. PBCenter? center,
  6. PBText? text,
  7. PBAppBar? appBar,
  8. PBColumn? column,
  9. 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;
}