fromJson static method
Implementation
@visibleForTesting
static WorkflowStep? fromJson(json) {
if (json == null) return null;
var result = WorkflowStep._(
json["id"],
json["name"],
);
return result;
}
@visibleForTesting
static WorkflowStep? fromJson(json) {
if (json == null) return null;
var result = WorkflowStep._(
json["id"],
json["name"],
);
return result;
}