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