lastSub method

ASN1Object? lastSub()

Implementation

ASN1Object? lastSub() {
  if (subCount() > 0) {
    return sub!.last;
  }
  return null;
}