PubStatus.fromJson constructor

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