deliver abstract method

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

Deliver a message with method to paired isolatengine with reply. method Method witch is registered by paired isolatengine. param Param of this method. /// The content of param could be:

Implementation

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