getContainerPath static method

Future<String?> getContainerPath({
  1. required String containerId,
})

Get the absolute path to the iCloud container.

Implementation

static Future<String?> getContainerPath({
  required String containerId,
}) async {
  return ICloudStoragePlatform.instance.getContainerPath(
    containerId: containerId,
  );
}