Model constructor

Model({
  1. int? id,
  2. DateTime? createdAt,
  3. DateTime? updatedAt,
})

Creates a new Model instance.

Implementation

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