fromJson static method

CustomizationFonts fromJson(
  1. dynamic jsonObject
)

Allows you to deserialize object.

Implementation

static CustomizationFonts fromJson(jsonObject) {
  var result = CustomizationFonts();
  result.testSetters = {};

  result.rfidProcessingScreenHintLabel =
      Font.fromJson(jsonObject["rfidProcessingScreenHintLabel"]);
  result.rfidProcessingScreenProgressLabel =
      Font.fromJson(jsonObject["rfidProcessingScreenProgressLabel"]);
  result.rfidProcessingScreenResultLabel =
      Font.fromJson(jsonObject["rfidProcessingScreenResultLabel"]);

  return result;
}