ReplicationTaskStats constructor

ReplicationTaskStats({
  1. int? elapsedTimeMillis,
  2. DateTime? freshStartDate,
  3. DateTime? fullLoadFinishDate,
  4. int? fullLoadProgressPercent,
  5. DateTime? fullLoadStartDate,
  6. DateTime? startDate,
  7. DateTime? stopDate,
  8. int? tablesErrored,
  9. int? tablesLoaded,
  10. int? tablesLoading,
  11. int? tablesQueued,
})

Implementation

ReplicationTaskStats({
  this.elapsedTimeMillis,
  this.freshStartDate,
  this.fullLoadFinishDate,
  this.fullLoadProgressPercent,
  this.fullLoadStartDate,
  this.startDate,
  this.stopDate,
  this.tablesErrored,
  this.tablesLoaded,
  this.tablesLoading,
  this.tablesQueued,
});