ExecutionTrigger.fromJson constructor
Implementation
factory ExecutionTrigger.fromJson(Map<String, dynamic> json) {
return ExecutionTrigger(
triggerDetail: json['triggerDetail'] as String?,
triggerType: (json['triggerType'] as String?)?.toTriggerType(),
);
}