fromJson static method
Allows you to deserialize object.
Implementation
static CameraSize? fromJson(jsonObject) {
if (jsonObject == null) return null;
return CameraSize(jsonObject["width"], jsonObject["height"]);
}
Allows you to deserialize object.
static CameraSize? fromJson(jsonObject) {
if (jsonObject == null) return null;
return CameraSize(jsonObject["width"], jsonObject["height"]);
}