GoogleCloudApihubV1ExecutionStatus.fromJson constructor
GoogleCloudApihubV1ExecutionStatus.fromJson(
- Map json_
Implementation
GoogleCloudApihubV1ExecutionStatus.fromJson(core.Map json_)
: this(
currentExecutionState: json_['currentExecutionState'] as core.String?,
lastExecution: json_.containsKey('lastExecution')
? GoogleCloudApihubV1LastExecution.fromJson(
json_['lastExecution'] as core.Map<core.String, core.dynamic>,
)
: null,
);