fromJson static method
Implementation
@visibleForTesting
static ImageQualityRange? fromJson(jsonObject) {
if (jsonObject == null) return null;
return ImageQualityRange(
_toDouble(jsonObject["min"])!,
_toDouble(jsonObject["max"])!,
);
}