fromJson static method
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;
}