Part constructor

const Part({
  1. String? name,
  2. String? fileName,
  3. String? contentType,
})

Creates a part annotation.

Implementation

const Part({
  this.name,
  this.fileName,
  this.contentType,
});