bytes property
      
      Uint8List
      get
      bytes
      
    
    
Returns the bytes representation of this CID.
Implementation
Uint8List get bytes =>
    _bytes.first == 0 ? _bytes : Uint8List.fromList([0, ..._bytes]);Returns the bytes representation of this CID.
Uint8List get bytes =>
    _bytes.first == 0 ? _bytes : Uint8List.fromList([0, ..._bytes]);