TransactionResult constructor

TransactionResult({
  1. required UpdateStatus status,
  2. required DateTime timestamp,
  3. String? reducerName,
  4. int? reducerId,
  5. Uint8List? retValue,
  6. bool isPending = false,
  7. String? pendingRequestId,
})

Implementation

TransactionResult({
  required this.status,
  required this.timestamp,
  this.reducerName,
  this.reducerId,
  this.retValue,
  this.isPending = false,
  this.pendingRequestId,
});