TimeTrackingDetails constructor

TimeTrackingDetails({
  1. String? originalEstimate,
  2. int? originalEstimateSeconds,
  3. String? remainingEstimate,
  4. int? remainingEstimateSeconds,
  5. String? timeSpent,
  6. int? timeSpentSeconds,
})

Implementation

TimeTrackingDetails(
    {this.originalEstimate,
    this.originalEstimateSeconds,
    this.remainingEstimate,
    this.remainingEstimateSeconds,
    this.timeSpent,
    this.timeSpentSeconds});