deliver abstract method

Future deliver(
  1. String method, {
  2. dynamic param,
  3. Duration? timeout,
  4. Cancelable? cancelable,
  5. Notify? onNotify,
})

deliver Deliver method with reply. method Method name. param Method param. timeout Timeout. cancelable Cancel context. onNotify Called when notified.

Implementation

Future<dynamic> deliver(
  String method, {
  dynamic param,
  Duration? timeout,
  Cancelable? cancelable,
  Notify? onNotify,
});