CSSStyle constructor

CSSStyle({
  1. int? styleSheetId,
  2. required List<CSSProperty> cssProperties,
  3. required List<ShorthandEntry> shorthandEntries,
  4. String? cssText,
  5. SourceRange? range,
})

Implementation

CSSStyle({
  this.styleSheetId,
  required this.cssProperties,
  required this.shorthandEntries,
  this.cssText,
  this.range,
});