OWMultipartData constructor

OWMultipartData({
  1. String? name,
  2. String? value,
  3. Uint8List? data,
  4. String? fileName,
  5. String? contentType,
})

Implementation

OWMultipartData({
  this.name,
  this.value,
  this.data,
  this.fileName,
  this.contentType,
});