BallCallable typedef

BallCallable = FutureOr<Object?> Function(String module, String function, Object? input)

A callable that lets handlers invoke other Ball functions without holding a direct BallEngine reference.

Implementation

typedef BallCallable =
    FutureOr<Object?> Function(String module, String function, Object? input);