getAllBucketItems method Null safety
- {required String bucketDid}
Get ALL Items from Bucket
Takes a bucketDid
and returns the BucketContentList
of all items in the bucket.
Implementation
Future<BucketContentList> getAllBucketItems({required String bucketDid}) async {
return await MotorFlutterPlatform.instance.getBucketObjects(bucketDid);
}