LogDto constructor

LogDto({
  1. int? logId,
  2. String? apiId,
  3. int? personId,
  4. int? relation,
  5. String? category,
  6. int? value,
  7. int? quantity,
  8. int? stastusCd,
  9. String? reasson,
  10. DateTime? registerTime,
})

Implementation

LogDto({
  this.logId,
  this.apiId,
  this.personId,
  this.relation,
  this.category,
  this.value,
  this.quantity,
  this.stastusCd,
  this.reasson,
  this.registerTime,
});