initialize method

void initialize(
  1. RTCDataChannel dc
)

Called by the Negotiator when the DataChannel is ready. */

Implementation

void initialize(RTCDataChannel dc) {
  _dc = dc;

  _configureDataChannel();
}