FlowTriggerConfig.fromMap constructor
FlowTriggerConfig.fromMap(
- Map<String, dynamic> map
)
Implementation
factory FlowTriggerConfig.fromMap(Map<String, dynamic> map) {
return FlowTriggerConfig(
triggerProperties: (() { final guardedValue = map['triggerProperties']; if (guardedValue == null) return null; return pulumi.Input.fromValue(FlowTriggerConfigTriggerProperties.fromMap((guardedValue as Map).cast<String, dynamic>())); })(),
triggerType: pulumi.Input.fromValue(map['triggerType'] as String),
);
}