AWSFile.protected constructor

  1. @protected
AWSFile.protected({
  1. String? path,
  2. List<int>? bytes,
  3. String? name,
  4. String? contentType,
})

Protected constructor of AWSFile.

Implementation

@protected
AWSFile.protected({
  this.path,
  this.bytes,
  this.name,
  String? contentType,
}) : _contentType = contentType;