NetworkInsightsAnalysisForwardPathComponentInboundHeaderDestinationPortRange.fromMap constructor
NetworkInsightsAnalysisForwardPathComponentInboundHeaderDestinationPortRange.fromMap()
Implementation
factory NetworkInsightsAnalysisForwardPathComponentInboundHeaderDestinationPortRange.fromMap(Map<String, dynamic> map) {
return NetworkInsightsAnalysisForwardPathComponentInboundHeaderDestinationPortRange(
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()); })(),
);
}