DomainOutliner<D> constructor

DomainOutliner<D>({
  1. SelectionModelType selectionType = SelectionModelType.info,
  2. double? defaultStrokePx,
  3. double? strokePaddingPx,
})

Implementation

DomainOutliner({
  this.selectionType = SelectionModelType.info,
  double? defaultStrokePx,
  double? strokePaddingPx,
})  : defaultStrokePx = defaultStrokePx ?? 2.0,
      strokePaddingPx = strokePaddingPx ?? 1.0 {
  _lifecycleListener = LifecycleListener<D>(onPostprocess: _outline);
}