GeneralStreamInternalSubscribersList constructor

GeneralStreamInternalSubscribersList({
  1. Iterable<GeneralStreamInternalSubscriber>? list,
})

Implementation

factory GeneralStreamInternalSubscribersList({
  $core.Iterable<GeneralStreamInternalSubscriber>? list,
}) {
  final result = create();
  if (list != null) result.list.addAll(list);
  return result;
}