fromJson static method

CustomizationTimings fromJson(
  1. dynamic jsonObject
)

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;
}