NetworkInsightsAnalysisForwardPathComponentOutboundHeaderDestinationPortRange.fromMap constructor
NetworkInsightsAnalysisForwardPathComponentOutboundHeaderDestinationPortRange.fromMap()
Implementation
factory NetworkInsightsAnalysisForwardPathComponentOutboundHeaderDestinationPortRange.fromMap(Map<String, dynamic> map) {
return NetworkInsightsAnalysisForwardPathComponentOutboundHeaderDestinationPortRange(
from: (() { final guardedValue = map['from']; if (guardedValue == null) return null; return pulumi.Input.fromValue((guardedValue as num).toInt()); })(),
to: (() { final guardedValue = map['to']; if (guardedValue == null) return null; return pulumi.Input.fromValue((guardedValue as num).toInt()); })(),
);
}