StoredRowState constructor
const
StoredRowState({
- required String accountKey,
- required String tableId,
- required String rowKey,
- required String phase,
- String? actionId,
- required int attemptCount,
- DateTime? nextRetryAt,
- String? errorCode,
- String? errorMessage,
- String? lastServerSeq,
- String? pendingValuesJson,
- required bool tombstone,
- 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,
});