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