BaseModel constructor

BaseModel(
  1. {String? title,
  2. String? description}
)

Implementation

BaseModel({
  this.title,
  this.description,
});