ExecutionCreateContextParams.fromJson constructor
ExecutionCreateContextParams.fromJson(
- JsonDecoder jsonDecoder,
- String jsonPath,
- Object? json
)
Implementation
factory ExecutionCreateContextParams.fromJson(
JsonDecoder jsonDecoder, String jsonPath, Object? json) {
json ??= {};
if (json is Map) {
String contextRoot;
if (json.containsKey('contextRoot')) {
contextRoot = jsonDecoder.decodeString(
'$jsonPath.contextRoot', json['contextRoot']);
} else {
throw jsonDecoder.mismatch(jsonPath, 'contextRoot');
}
return ExecutionCreateContextParams(contextRoot);
} else {
throw jsonDecoder.mismatch(
jsonPath, 'execution.createContext params', json);
}
}