RTCDataChannelInit constructor
RTCDataChannelInit({})
Implementation
factory RTCDataChannelInit({
_i2.num? id,
_i2.num? maxPacketLifeTime,
_i2.num? maxRetransmits,
_i2.bool? negotiated,
_i2.bool? ordered,
_i2.String? protocol,
}) =>
RTCDataChannelInit._(
id: id,
maxPacketLifeTime: maxPacketLifeTime,
maxRetransmits: maxRetransmits,
negotiated: negotiated,
ordered: ordered,
protocol: protocol,
);