InboundStateNotification constructor
InboundStateNotification({
- Iterable<
InboundVideoState> ? inboundVideoStates,
Implementation
factory InboundStateNotification({
$core.Iterable<InboundVideoState>? inboundVideoStates,
}) {
final result = create();
if (inboundVideoStates != null)
result.inboundVideoStates.addAll(inboundVideoStates);
return result;
}