Part constructor

const Part({
  1. @Deprecated('future release') String? value,
  2. String? name,
  3. String? fileName,
  4. String? contentType,
})

Implementation

const Part({
  @Deprecated('future release') this.value,
  this.name,
  this.fileName,
  this.contentType,
});