doesObjectExist method

Future<bool> doesObjectExist(
  1. String bucket,
  2. String cosPath
)

Implementation

Future<bool> doesObjectExist(String bucket, String cosPath) {
  return cosApi.doesObjectExist(serviceKey, bucket, cosPath);
}