Client.static constructor

Client.static(
  1. String accessKey,
  2. String accessSecret,
  3. String region
)

Implementation

Client.static(String accessKey, String accessSecret, String region) {
  this._auth = Auth(accessKey, accessSecret, null);
  this.endpoint = "oss-${region}.aliyuncs.com";
  this.stsRequestUrl = '';
  this.tokenGetter = (url) async => '';
}