subscribeGetValueReplyReceived method

void subscribeGetValueReplyReceived(
  1. dynamic callback(
    1. GetValueReply
    )
)

Subscribes to all GetValueReplyReceived-Events.

Implementation

void subscribeGetValueReplyReceived(Function(GetValueReply) callback) {
  _callbacksForGetValueReply.add(callback);
}