AtcDto constructor

AtcDto({
  1. String? code,
  2. String? description,
})

Returns a new AtcDto instance.

Implementation

AtcDto({
  this.code,
  this.description,
});