CommandTaskDTO constructor

const CommandTaskDTO({
  1. String? id,
  2. String? gensetSerialNumber,
  3. CommandTaskStatusDTO? status,
  4. DateTime? requestTimestamp,
  5. CommandTaskRequestDTO? request,
  6. DateTime? responseTimestamp,
  7. CommandTaskResponseDTO? response,
})

Implementation

const CommandTaskDTO({
  this.id,
  this.gensetSerialNumber,
  this.status,
  this.requestTimestamp,
  this.request,
  this.responseTimestamp,
  this.response,
});