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