BaseObject constructor

const BaseObject({
  1. String? id,
  2. String? $id,
  3. int? cstamp,
  4. String? cby,
  5. String? uby,
  6. int? ustamp,
})

Implementation

const BaseObject({
  this.id,
  this.$id,
  this.cstamp,
  this.cby,
  this.uby,
  this.ustamp,
});