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