StoredRowState constructor

const StoredRowState({
  1. required String accountKey,
  2. required String tableId,
  3. required String rowKey,
  4. required String phase,
  5. String? actionId,
  6. required int attemptCount,
  7. DateTime? nextRetryAt,
  8. String? errorCode,
  9. String? errorMessage,
  10. String? lastServerSeq,
  11. String? pendingValuesJson,
  12. required bool tombstone,
  13. required DateTime updatedAt,
})

Implementation

const StoredRowState({
  required this.accountKey,
  required this.tableId,
  required this.rowKey,
  required this.phase,
  this.actionId,
  required this.attemptCount,
  this.nextRetryAt,
  this.errorCode,
  this.errorMessage,
  this.lastServerSeq,
  this.pendingValuesJson,
  required this.tombstone,
  required this.updatedAt,
});