VtmDto constructor

VtmDto({
  1. int? from,
  2. int? to,
  3. String? code,
  4. SamTextDto? name,
})

Returns a new VtmDto instance.

Implementation

VtmDto({
  this.from,
  this.to,
  this.code,
  this.name,
});