AiStateModel constructor

AiStateModel({
  1. num? taskId,
  2. num? userId,
  3. String? deviceType,
  4. String? originalInput,
  5. String? status,
  6. dynamic failReason,
  7. String? createdAt,
  8. String? updatedAt,
  9. CurrentStage? currentStage,
  10. List<AllStages>? allStages,
})

Implementation

AiStateModel({
    this.taskId,
    this.userId,
    this.deviceType,
    this.originalInput,
    this.status,
    this.failReason,
    this.createdAt,
    this.updatedAt,
    this.currentStage,
    this.allStages,});