fromJson static method
Implementation
@visibleForTesting
static StartWorkflowConfig? fromJson(json) {
if (json == null) return null;
var result = StartWorkflowConfig(
locale: json["locale"],
metadata: json["metadata"],
);
return result;
}