HttpInfoList constructor

HttpInfoList({
  1. Iterable<HttpInfo>? httpInfoList,
})

Implementation

factory HttpInfoList({
  $core.Iterable<HttpInfo>? httpInfoList,
}) {
  final $result = create();
  if (httpInfoList != null) {
    $result.httpInfoList.addAll(httpInfoList);
  }
  return $result;
}