CSSStyleSheetHeader constructor

CSSStyleSheetHeader({
  1. required StyleSheetId styleSheetId,
  2. required FrameId frameId,
  3. required String sourceURL,
  4. String? sourceMapURL,
  5. required StyleSheetOrigin origin,
  6. required String title,
  7. BackendNodeId? ownerNode,
  8. required bool disabled,
  9. bool? hasSourceURL,
  10. required bool isInline,
  11. required bool isMutable,
  12. required bool isConstructed,
  13. required num startLine,
  14. required num startColumn,
  15. required num length,
  16. required num endLine,
  17. required num endColumn,
  18. bool? loadingFailed,
})

Implementation

CSSStyleSheetHeader(
    {required this.styleSheetId,
    required this.frameId,
    required this.sourceURL,
    this.sourceMapURL,
    required this.origin,
    required this.title,
    this.ownerNode,
    required this.disabled,
    this.hasSourceURL,
    required this.isInline,
    required this.isMutable,
    required this.isConstructed,
    required this.startLine,
    required this.startColumn,
    required this.length,
    required this.endLine,
    required this.endColumn,
    this.loadingFailed});