CreateExecutionRequest.fromJson constructor
Implementation
factory CreateExecutionRequest.fromJson(Map<String, dynamic> json) {
return CreateExecutionRequest(
parent: json['parent'] ?? '',
execution: decode(json['execution'], Execution.fromJson),
executionId: json['executionId'] ?? '',
);
}