SessionList constructor

SessionList({
  1. Iterable<SessionConfig>? sessionConfigs,
})

Implementation

factory SessionList({
  $core.Iterable<SessionConfig>? sessionConfigs,
}) {
  final $result = create();
  if (sessionConfigs != null) {
    $result.sessionConfigs.addAll(sessionConfigs);
  }
  return $result;
}