CSSProperty constructor
      
      CSSProperty({ 
    
    
- required String name,
- required String value,
- bool? important,
- bool? implicit,
- String? text,
- bool? parsedOk,
- bool? disabled,
- SourceRange? range,
- List<CSSProperty> ? longhandProperties,
Implementation
CSSProperty({
  required this.name,
  required this.value,
  this.important,
  this.implicit,
  this.text,
  this.parsedOk,
  this.disabled,
  this.range,
  this.longhandProperties,
});