unsubscribeGetValueReplyReceived method

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

Unsubscribes the callback from the GetValueReplyReceived-Event.

The callback needs to be exactly the same as the one used while subscribing.

Implementation

void unsubscribeGetValueReplyReceived(Function(GetValueReply) callback) {
  _callbacksForGetValueReply.remove(callback);
}