VariableAst constructor

VariableAst(
  1. String name,
  2. String? value,
  3. SourceSpan sourceSpan
)

Implementation

VariableAst(this.name, String? value, this.sourceSpan)
    : value = value != null && value.isNotEmpty ? value : implicitValue;