BaseDTO constructor
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,
});