cat method

Future<Uint8List?> cat(
  1. String cid
)

Returns a Future that resolves to the raw content associated with the given cid.

This is an alias for get.

Implementation

Future<Uint8List?> cat(String cid) async => get(cid);