Features constructor

Features(
  1. {int? id,
  2. String name = "",
  3. String status = "",
  4. String createdAt = "",
  5. String updatedAt = ""}
)

Implementation

Features({
  this.id,
  this.name = "",
  this.status = "",
  this.createdAt = "",
  this.updatedAt = "",
});