getAllBucketItems method Null safety

Future<BucketContentList> getAllBucketItems(
  1. {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);
}