fromJson static method
- dynamic json
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;
}