InboundStateNotification constructor

InboundStateNotification({
  1. Iterable<InboundVideoState>? inboundVideoStates,
})

Implementation

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