getNegotiatorById<T extends XmppFeatureNegotiatorBase> method

T? getNegotiatorById<T extends XmppFeatureNegotiatorBase>(
  1. String id
)

Returns, if registered, a negotiator with id id.

Implementation

T? getNegotiatorById<T extends XmppFeatureNegotiatorBase>(String id) =>
    negotiators[id] as T?;