SupplyProblemDto constructor

SupplyProblemDto({
  1. int? from,
  2. int? to,
  3. SamTextDto? reason,
  4. int? expectedEndOn,
  5. SamTextDto? impact,
  6. SamTextDto? additionalInformation,
})

Returns a new SupplyProblemDto instance.

Implementation

SupplyProblemDto({
  this.from,
  this.to,
  this.reason,
  this.expectedEndOn,
  this.impact,
  this.additionalInformation,
});