VmpStubDto constructor

VmpStubDto({
  1. required String id,
  2. String? code,
  3. VmpGroupStubDto? vmpGroup,
  4. SamTextDto? name,
})

Returns a new VmpStubDto instance.

Implementation

VmpStubDto({
  required this.id,
  this.code,
  this.vmpGroup,
  this.name,
});