Spaces constructor

Spaces({
  1. required String? region,
  2. required String? accessKey,
  3. required String? secretKey,
  4. String? endpointUrl,
  5. Client? httpClient,
})

Implementation

Spaces(
    {required String? region,
    required String? accessKey,
    required String? secretKey,
    String? endpointUrl,
    http.Client? httpClient})
    : super(
          region: region,
          accessKey: accessKey,
          secretKey: secretKey,
          service: "s3",
          endpointUrl: endpointUrl,
          httpClient: httpClient) {
  // ...
}