removeNegotiatingFeature method
- String feature
override
Remove feature
from the stream features we are currently negotiating.
Implementation
@override
void removeNegotiatingFeature(String feature) {
_streamFeatures.removeWhere((node) {
return node.attributes['xmlns'] == feature;
});
}