getBucketItem method Null safety
Get Item from Bucket
Takes a cid
and returns the BucketContent
if it exists.
Implementation
Future<BucketContent?> getBucketItem({required String bucketDid, required String cid}) async {
return await MotorFlutterPlatform.instance.getBucketObject(bucketDid, cid);
}