ExecutableFile.fromJson constructor
ExecutableFile.fromJson(
- JsonDecoder jsonDecoder,
- String jsonPath,
- 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);
}
}