BoundValueConverter.forView constructor

BoundValueConverter.forView(
  1. CompileView view
)

Creates a bound value converter for expressions in a view.

The implicitReceiver is the receiver on which bound expressions are implicitly invoked. For example, if implicitReceiver is the variable ctx, the expression foo(bar) is rewritten as ctx.foo(ctx.bar).

Implementation

factory BoundValueConverter.forView(
  CompileView view,
) = _ViewBoundValueConverter;