GatewayInfoList constructor

GatewayInfoList({
  1. Iterable<GatewayInfo>? gatewayInfoList,
})

Implementation

factory GatewayInfoList({
  $core.Iterable<GatewayInfo>? gatewayInfoList,
}) {
  final $result = create();
  if (gatewayInfoList != null) {
    $result.gatewayInfoList.addAll(gatewayInfoList);
  }
  return $result;
}