StartNextPendingJobExecutionResponse.fromJson constructor

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

Implementation

factory StartNextPendingJobExecutionResponse.fromJson(
    Map<String, dynamic> json) {
  return StartNextPendingJobExecutionResponse(
    execution: json['execution'] != null
        ? JobExecution.fromJson(json['execution'] as Map<String, dynamic>)
        : null,
  );
}