appId property

Uint8List? get appId

Implementation

Uint8List? get appId {
  if (_definition.isDefined) {
    var msg = _definition.developerIdMesg;
    if (msg == null) return null;

    int count = msg.numApplicationId;
    Uint8List appId = Uint8List(count);
    for (int i = 0; i < count; i++) {
      appId[i] = msg.getApplicationId(i) ?? 0xFF;
    }
    return appId;
  }
  return null;
}