DomainOutliner<D> constructor
DomainOutliner<D> ({
- SelectionModelType selectionType = SelectionModelType.info,
- double? defaultStrokePx,
- 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);
}