subscribeServiceReplyReceived method

void subscribeServiceReplyReceived(
  1. dynamic callback(
    1. ServiceReply
    )
)

Subscribes to all ServiceReplyReceived-Events.

Implementation

void subscribeServiceReplyReceived(Function(ServiceReply) callback) {
  _callbacksForServiceReply.add(callback);
}