PubStatus.fromJson constructor
PubStatus.fromJson(
- JsonDecoder jsonDecoder,
- String jsonPath,
- Object? json
)
Implementation
factory PubStatus.fromJson(
JsonDecoder jsonDecoder, String jsonPath, Object? json) {
json ??= {};
if (json is Map) {
bool isListingPackageDirs;
if (json.containsKey('isListingPackageDirs')) {
isListingPackageDirs = jsonDecoder.decodeBool(
'$jsonPath.isListingPackageDirs', json['isListingPackageDirs']);
} else {
throw jsonDecoder.mismatch(jsonPath, 'isListingPackageDirs');
}
return PubStatus(isListingPackageDirs);
} else {
throw jsonDecoder.mismatch(jsonPath, 'PubStatus', json);
}
}