CreateExecutionRequest.fromJson constructor

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

Implementation

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