unsubscribeGetValueRequestReceived method

void unsubscribeGetValueRequestReceived(
  1. dynamic callback(
    1. GetValueRequest
    )
)

Unsubscribes the callback from the GetValueRequestReceived-Event.

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

Implementation

void unsubscribeGetValueRequestReceived(Function(GetValueRequest) callback) {
  _callbacksForGetValueRequest.remove(callback);
}