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