encodedBytes property

Uint8List encodedBytes

Get the encoded byte representation for this object. This can trigger calling the subclasss _encode method if the object has not yet been encoded

Implementation

Uint8List get encodedBytes {
  if (_encodedBytes == null) {
    _encode();
  }
  if (_encodedBytes == null) {
    throw ASN1Exception('ASN1 Encoding failed. This should never happen');
  }
  return _encodedBytes!;
}