find method

  1. @override
CoapExchange? find(
  1. int? key
)
override

Finds the exchange associated with the supplied key

Implementation

@override
CoapExchange? find(final int? key) {
  if (_incomingMessages.containsKey(key)) {
    return _incomingMessages[key];
  }
  return null;
}