Setting constructor

Setting({
  1. String? uuid,
  2. String? updatedTs,
  3. String? createdBy,
  4. String? updatedBy,
  5. String? createdTs,
  6. String? key,
  7. String? value,
  8. bool? active,
})

Implementation

Setting({
  this.uuid,
  this.updatedTs,
  this.createdBy,
  this.updatedBy,
  this.createdTs,
  this.key,
  this.value,
  this.active,
});