status property

StatusWord get status

The status bytes decoded into something to branch on.

The StatusWord hierarchy lives in package:nfc_util/apdu.dart, which is where the rest of the ISO 7816-4 codec is; importing it is what turns 61xx into a case with the remaining byte count on it rather than a number to compare against.

Implementation

StatusWord get status => StatusWord(statusWord1, statusWord2);