AgoraStorageBucketConfig constructor

const AgoraStorageBucketConfig({
  1. required String accessKey,
  2. required String bucketName,
  3. required String secretKey,
  4. AgoraStorageVendor vendor = AgoraStorageVendor.googleCloud,
  5. String rootPath = "temp",
  6. bool enableDebug = false,
})

Setup to use cloud recording.

If cloud recording is to be implemented, the server side must also be configured to match this setting.

クラウドレコーディングを利用するための設定。

クラウドレコーディングを実装する場合は、この設定を合わせてサーバー側の設定も必要です。

Implementation

const AgoraStorageBucketConfig({
  required this.accessKey,
  required this.bucketName,
  required this.secretKey,
  this.vendor = AgoraStorageVendor.googleCloud,
  this.rootPath = "temp",
  this.enableDebug = false,
});