ASN1Object.decode constructor

ASN1Object.decode(
  1. dynamic input
)

Implementation

factory ASN1Object.decode(/* Iterable<int> | String */ input) {
  if (input is String) input = base64Decode(input);
  return parse(MutableIterable(input));
}