LocalEntity constructor

LocalEntity({
  1. String? element,
  2. int? id,
  3. int? page,
  4. int? timeStamp,
})

Implementation

LocalEntity({
  this.element,
  this.id,
  this.page,
  this.timeStamp,
});