CSSProperty constructor

CSSProperty({
  1. required String name,
  2. required String value,
  3. bool? important,
  4. bool? implicit,
  5. String? text,
  6. bool? parsedOk,
  7. bool? disabled,
  8. SourceRange? range,
  9. 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,
});