RTCIdentityProviderOptions constructor

RTCIdentityProviderOptions({
  1. String? protocol,
  2. String? usernameHint,
  3. String? peerIdentity,
})

Implementation

factory RTCIdentityProviderOptions(
        {String? protocol, String? usernameHint, String? peerIdentity}) =>
    RTCIdentityProviderOptions._(
        protocol: protocol ?? 'default',
        usernameHint: usernameHint ?? undefined,
        peerIdentity: peerIdentity ?? undefined);