BaseDTO constructor

BaseDTO({
  1. String? id,
  2. bool? isActive,
  3. bool? isDeleted,
  4. String? createdAt,
  5. String? updatedAt,
})

Creates a new instance of BaseDTO.

The parameters can be used to specify the initial values for the DTO's properties.

Implementation

BaseDTO({
  this.id,
  this.isActive,
  this.isDeleted,
  this.createdAt,
  this.updatedAt,
});