ConnectionContext constructor
ConnectionContext({})
Implementation
ConnectionContext({
String? connectionId,
required this.remotePeerId,
required this.connectionType,
DateTime? establishedAt,
this.outerConnectionId,
this.sessionId,
this.relayPeerId,
this.hopStreamId,
this.transportConnectionId,
}) : connectionId = connectionId ?? _uuid.v4(),
establishedAt = establishedAt ?? DateTime.now();