uploadBlob method

Future<XRPCResponse<BlobData>> uploadBlob(
  1. Uint8List bytes
)

Implementation

Future<core.XRPCResponse<BlobData>> uploadBlob(final Uint8List bytes) async =>
    await _ctx.post(
      ns.comAtprotoRepoUploadBlob,
      body: bytes,
      to: BlobData.fromJson,
    );