S3ICore constructor

S3ICore(
  1. AuthenticationManager authManager, {
  2. String directoryUrl = 'https://dir.s3i.vswf.dev/api/2',
})

Creates a new instance of S3ICore.

The authManager needs to be correctly setup and if you wish to connect to a different address of the S3I-Directory you could specify this in the directoryUrl.

Could throw a UnsupportedError if no platform appropriate client could be created.

Implementation

S3ICore(this.authManager,
    {this.directoryUrl = 'https://dir.s3i.vswf.dev/api/2'}) {
  _directoryClient = Client();
}