ExecutionCreateContextParams.fromJson constructor

ExecutionCreateContextParams.fromJson(
  1. JsonDecoder jsonDecoder,
  2. String jsonPath,
  3. 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);
  }
}