fromJson static method
- dynamic jsonObject
Allows you to deserialize object.
Implementation
static GlaresCheckParams? fromJson(jsonObject) {
var result = new GlaresCheckParams();
if (jsonObject == null) return null;
result.imgMarginPart = _toDouble(jsonObject["imgMarginPart"]);
result.maxGlaringPart = _toDouble(jsonObject["maxGlaringPart"]);
return result;
}