VmpGroupStubDto constructor

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

Returns a new VmpGroupStubDto instance.

Implementation

VmpGroupStubDto({
  required this.id,
  this.code,
  this.name,
  this.productId,
});