ne property

int get ne

Implementation

int get ne => _ne;
set ne (int ne)

Implementation

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