BuildOp.v2 constructor

const BuildOp.v2({
  1. bool? alwaysRenderBlock,
  2. String? debugLabel,
  3. DefaultStyles? defaultStyles,
  4. OnParsed? onParsed,
  5. OnRenderBlock? onRenderBlock,
  6. OnRenderInline? onRenderInline,
  7. OnRenderedBlock? onRenderedBlock,
  8. OnRenderedChildren? onRenderedChildren,
  9. OnVisitChild? onVisitChild,
  10. int priority = kPriorityDefault,
})

Creates a second generation build op.

Implementation

const BuildOp.v2({
  this.alwaysRenderBlock,
  this.debugLabel,
  this.defaultStyles,
  this.onParsed,
  this.onRenderBlock,
  this.onRenderInline,
  this.onRenderedBlock,
  this.onRenderedChildren,
  this.onVisitChild,
  this.priority = kPriorityDefault,
});