Applier typedef

Applier = dynamic Function(dynamic rule, dynamic data)

Applier applies the rule on the given data. It is the first argument passed to the operator function.

Implementation

typedef Applier = dynamic Function(dynamic rule, dynamic data);