fromComponentString static method

ASN1ObjectIdentifier fromComponentString(
  1. String path, {
  2. int tag = OBJECT_IDENTIFIER,
})

Implementation

static ASN1ObjectIdentifier fromComponentString(String path,
        {int tag = OBJECT_IDENTIFIER}) =>
    fromComponents(path.split('.').map(int.parse).toList(), tag: tag);