AppControlReplyCallback typedef

AppControlReplyCallback = FutureOr<void> Function(AppControl request, AppControl reply, AppControlReplyResult result)

Callback to be called when a reply to a launch request is delivered.

request represents the launch request that has been sent. reply represents the reply message sent by the callee application. result represents the result of launch.

Implementation

typedef AppControlReplyCallback = FutureOr<void> Function(
  AppControl request,
  AppControl reply,
  AppControlReplyResult result,
);