dom property

  1. @override
  2. @Accessor(doNotGenerate: true)
DomPropsMixin dom
latefinal

A view into this map that can be used to access DOM props, for convenience.

Example:

(Tab()
  ..dom.draggable = true
)('Untitled Document')

Implementation

@override
@Accessor(doNotGenerate: true)
late final DomPropsMixin dom = DomProps(null, props);