StatusWord constructor
Decodes the two status bytes as the card sent them.
Implementation
factory StatusWord(int statusWord1, int statusWord2) {
_checkByte(statusWord1, 'statusWord1');
_checkByte(statusWord2, 'statusWord2');
return _decode(statusWord1, statusWord2);
}