S3 constructor

S3({
  1. required bool enabled,
  2. String? bucket,
  3. String? prefix,
})

Implementation

S3({
  required this.enabled,
  this.bucket,
  this.prefix,
});