Handle typedef

Handle = Future Function(dynamic param, Cancelable cancelable, Notify notify)

Implementation

typedef Handle = Future<dynamic> Function(
  dynamic param,
  Cancelable cancelable,
  Notify notify,
);