$IngestionStatus constructor

$IngestionStatus({
  1. String? numActiveRows,
  2. String? numRowsProcessed,
  3. String? numRowsTotal,
  4. String? numRowsWithErrors,
  5. String? numWarningsTotal,
})

Implementation

$IngestionStatus({
  this.numActiveRows,
  this.numRowsProcessed,
  this.numRowsTotal,
  this.numRowsWithErrors,
  this.numWarningsTotal,
});