removeFromBucket method Null safety
Remove Item from Bucket
Takes a cid
and removes it from the Bucket if it exists.
Implementation
Future<bool> removeFromBucket({required String bucketDid, required String cid}) async {
return await MotorFlutterPlatform.instance.removeBucketObject(bucketDid, cid);
}