p1 property

int get p1

Implementation

int get p1 => _p1;
set p1 (int p1)

Implementation

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