Declaration constructor
Declaration(
- Identifier? _property,
- Expression? expression,
- DartStyleExpression? dartStyle,
- SourceSpan? span, {
- bool important = false,
- bool ie7 = false,
Implementation
Declaration(this._property, this.expression, this.dartStyle, SourceSpan? span,
{this.important = false, bool ie7 = false})
: isIE7 = ie7,
super(span);