fromJson static method
Allows you to deserialize object.
Implementation
static RFIDParams? fromJson(jsonObject) {
if (jsonObject == null) return null;
return RFIDParams(
paIgnoreNotificationCodes: _intListFrom(
jsonObject["paIgnoreNotificationCodes"],
),
);
}