p2 property

int get p2

Implementation

int get p2 => _p2;
set p2 (int p2)

Implementation

set p2(int p2) {
  if (p2 >= 0 && p2 <= 0xff) {
    _p2 = p2;
  } else {
    throw ArgumentError.value(
        p2, "p2", "Command APDU invalid parameter value");
  }
}