MultipartData constructor
const
MultipartData({})
Implementation
const MultipartData({
this.name,
this.value,
this.data,
this.fileName,
this.contentType,
}) : assert(
data == null || contentType != null,
'You must provide a [contentType] (e.g., "image/png", "application/pdf") when uploading binary [data].',
);