CID.parse constructor

CID.parse(
  1. String cid
)

Returns the new instance of CID based on string cid.

Implementation

factory CID.parse(final String cid) => CID(
      _decode(_ensureStringFormat(cid)),
    );