add method
Adds the given obj
to the elements list.
Implementation
void add(ASN1Object obj) {
elements ??= [];
elements!.add(obj);
}
Adds the given obj
to the elements list.
void add(ASN1Object obj) {
elements ??= [];
elements!.add(obj);
}