fromJson static method
Allows you to deserialize object.
Implementation
static CustomizationTimings fromJson(jsonObject) {
var result = CustomizationTimings();
result.testSetters = {};
result.nextPageIdCardStartDelay = jsonObject["nextPageIdCardStartDelay"];
result.nextPageIdCardEndDelay = jsonObject["nextPageIdCardEndDelay"];
result.nextPagePassportShiftStartDelay = jsonObject["nextPagePassportShiftStartDelay"];
result.nextPagePassportShiftEndDelay = jsonObject["nextPagePassportShiftEndDelay"];
result.nextPagePassportFlipStartDelay = jsonObject["nextPagePassportFlipStartDelay"];
result.nextPagePassportFlipEndDelay = jsonObject["nextPagePassportFlipEndDelay"];
return result;
}