RadarrCommand constructor

RadarrCommand({
  1. String? name,
  2. String? commandName,
  3. String? message,
  4. RadarrCommandBody? body,
  5. String? priority,
  6. String? status,
  7. DateTime? queued,
  8. DateTime? started,
  9. DateTime? ended,
  10. String? trigger,
  11. DateTime? stateChangeTime,
  12. bool? sendUpdatesToClient,
  13. bool? updateScheduledTask,
  14. DateTime? lastExecutionTime,
  15. int? id,
})

Implementation

RadarrCommand({
    this.name,
    this.commandName,
    this.message,
    this.body,
    this.priority,
    this.status,
    this.queued,
    this.started,
    this.ended,
    this.trigger,
    this.stateChangeTime,
    this.sendUpdatesToClient,
    this.updateScheduledTask,
    this.lastExecutionTime,
    this.id,
});