fromJson static method

RFIDParams? fromJson(
  1. dynamic jsonObject
)

Allows you to deserialize object.

Implementation

static RFIDParams? fromJson(jsonObject) {
  if (jsonObject == null) return null;
  return RFIDParams(
    paIgnoreNotificationCodes: jsonObject["paIgnoreNotificationCodes"] == null
        ? null
        : List<int>.from(jsonObject["paIgnoreNotificationCodes"]),
  );
}