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