BaseModel constructor

BaseModel({
  1. String? id,
  2. DateTime? createdAt,
  3. DateTime? updatedAt,
})

Implementation

BaseModel({
  this.id,
  this.createdAt,
  this.updatedAt,
});