ExecutionTrigger.fromJson constructor

ExecutionTrigger.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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