signature property

List<int>? signature

Gets the signature value (the raw signature bits) from the certificate.

Implementation

List<int>? get signature {
  var data = asn1?[0].subAtIndex(2)?.value;
  return data is List<int> ? data : null;
}