attachment static method
Convenuience method to create a Content-Disposition: attachment
header
Implementation
static ContentDispositionHeader attachment(
{String? filename,
DateTime? creationDate,
DateTime? modificationDate,
DateTime? readDate,
int? size}) =>
from(ContentDisposition.attachment,
filename: filename,
creationDate: creationDate,
modificationDate: modificationDate,
readDate: readDate,
size: size);