PropertyAst.from constructor

PropertyAst.from(
  1. TemplateAst? origin,
  2. String name, [
  3. String? value,
  4. String? postfix,
  5. String? unit,
])

Create a new synthetic property AST that originated from another AST.

Implementation

factory PropertyAst.from(
  TemplateAst? origin,
  String name, [
  String? value,
  String? postfix,
  String? unit,
]) = _SyntheticPropertyAst.from;