fromJson static method
- dynamic jsonObject
Allows you to deserialize object.
Implementation
static RFIDParams? fromJson(jsonObject) {
var result = new RFIDParams();
if (jsonObject == null) return null;
result.paIgnoreNotificationCodes = jsonObject["paIgnoreNotificationCodes"];
return result;
}