DatasetTableWatchEvent constructor

const DatasetTableWatchEvent({
  1. required String kind,
  2. required DatasetTableWatchPhase phase,
  3. ArrowRecordBatch? batch,
  4. String? changeType,
  5. int? version,
  6. int? beginVersion,
  7. int? endVersion,
  8. List<Map<String, Object?>>? transactions,
  9. String? deletePredicate,
  10. Map<String, Object?>? transaction,
})

Implementation

const DatasetTableWatchEvent({
  required this.kind,
  required this.phase,
  this.batch,
  this.changeType,
  this.version,
  this.beginVersion,
  this.endVersion,
  this.transactions,
  this.deletePredicate,
  this.transaction,
});