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;
}