CSSProperty constructor

CSSProperty({
  1. required String name,
  2. required String value,
  3. bool important = false,
  4. bool implicit = false,
  5. String? text,
  6. bool parsedOk = true,
  7. bool? disabled,
  8. SourceRange? range,
})

Implementation

CSSProperty({
  required this.name,
  required this.value,
  this.important = false,
  this.implicit = false,
  this.text,
  this.parsedOk = true,
  this.disabled,
  this.range,
});