ContextFinalizer typedef

ContextFinalizer = Object? Function(Context context, Object? value)

A Function that can be used to process the result of a variable expression before it is output.

For example one can convert null implicitly into an empty string here.

Takes Context as first argument.

Implementation

typedef ContextFinalizer = Object? Function(Context context, Object? value);