VmpComponentDto constructor

VmpComponentDto({
  1. String? code,
  2. VirtualFormDto? virtualForm,
  3. List<RouteOfAdministrationDto> routeOfAdministrations = const [],
  4. SamTextDto? name,
  5. int? phaseNumber,
  6. List<VirtualIngredientDto> virtualIngredients = const [],
})

Returns a new VmpComponentDto instance.

Implementation

VmpComponentDto({
  this.code,
  this.virtualForm,
  this.routeOfAdministrations = const [],
  this.name,
  this.phaseNumber,
  this.virtualIngredients = const [],
});