Transaction constructor

Transaction({
  1. String? id,
  2. String? readTimestamp,
})

Implementation

Transaction({
  this.id,
  this.readTimestamp,
});