Callback1<T1> typedef

Callback1<T1> = void Function(T1 arg1)

Callback function type with 1 positional argument.

Implementation

typedef Callback1<T1> = void Function(T1 arg1);