History constructor

History({
  1. List<Changes>? changes,
  2. DateTime? createdOn,
  3. int? id,
  4. int? typeId,
  5. int? userId,
})

Implementation

History({
  this.changes,
  this.createdOn,
  this.id,
  this.typeId,
  this.userId,
});