fromJson static method
Implementation
@visibleForTesting
static PrepareWorkflowConfig? fromJson(json) {
if (json == null) return null;
var result = PrepareWorkflowConfig(
json["workflowId"],
);
return result;
}
@visibleForTesting
static PrepareWorkflowConfig? fromJson(json) {
if (json == null) return null;
var result = PrepareWorkflowConfig(
json["workflowId"],
);
return result;
}