cat method

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

Get content by CID (alias for get method)

Implementation

Future<Uint8List?> cat(String cid) async {
  return await get(cid);
}