UndefinedCallback typedef

UndefinedCallback = Object? Function(String name, [String? path])

A function that returns a value or throws an error if the variable is not found.

Used by {{ user.field }} expression when user not found.

Implementation

typedef UndefinedCallback = Object? Function(String name, [String? path]);