ContentDispositionHeader.inline constructor

ContentDispositionHeader.inline({
  1. String? filename,
  2. DateTime? creationDate,
  3. DateTime? modificationDate,
  4. DateTime? readDate,
  5. int? size,
})

Convenience method to create a Content-Disposition: inline header

Implementation

ContentDispositionHeader.inline({
  String? filename,
  DateTime? creationDate,
  DateTime? modificationDate,
  DateTime? readDate,
  int? size,
}) : this.from(
        ContentDisposition.inline,
        filename: filename,
        creationDate: creationDate,
        modificationDate: modificationDate,
        readDate: readDate,
        size: size,
      );