CancelableObjectVisitor typedef

CancelableObjectVisitor = bool Function(Object child)

Signature for a function that takes an Object and returns true to continue, or false to cancel.

The child argument must not be null.

Implementation

typedef CancelableObjectVisitor = bool Function(Object child);