ExecutableFile.fromJson constructor

ExecutableFile.fromJson(
  1. JsonDecoder jsonDecoder,
  2. String jsonPath,
  3. Object? json
)

Implementation

factory ExecutableFile.fromJson(
    JsonDecoder jsonDecoder, String jsonPath, Object? json) {
  json ??= {};
  if (json is Map) {
    String file;
    if (json.containsKey('file')) {
      file = jsonDecoder.decodeString('$jsonPath.file', json['file']);
    } else {
      throw jsonDecoder.mismatch(jsonPath, 'file');
    }
    ExecutableKind kind;
    if (json.containsKey('kind')) {
      kind = ExecutableKind.fromJson(
          jsonDecoder, '$jsonPath.kind', json['kind']);
    } else {
      throw jsonDecoder.mismatch(jsonPath, 'kind');
    }
    return ExecutableFile(file, kind);
  } else {
    throw jsonDecoder.mismatch(jsonPath, 'ExecutableFile', json);
  }
}