firstSub method

ASN1Object? firstSub()

Implementation

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