KalamRowStatesCompanion.insert constructor
KalamRowStatesCompanion.insert({
- required String accountKey,
- required String tableId,
- required String rowKey,
- required String phase,
- Value<
String?> actionId = const Value.absent(), - Value<
int> attemptCount = const Value.absent(), - Value<
DateTime?> nextRetryAt = const Value.absent(), - Value<
String?> errorCode = const Value.absent(), - Value<
String?> errorMessage = const Value.absent(), - Value<
String?> lastServerSeq = const Value.absent(), - Value<
String?> pendingValuesJson = const Value.absent(), - Value<
bool> tombstone = const Value.absent(), - required DateTime updatedAt,
- Value<
int> rowid = const Value.absent(),
Implementation
KalamRowStatesCompanion.insert({
required String accountKey,
required String tableId,
required String rowKey,
required String phase,
this.actionId = const Value.absent(),
this.attemptCount = const Value.absent(),
this.nextRetryAt = const Value.absent(),
this.errorCode = const Value.absent(),
this.errorMessage = const Value.absent(),
this.lastServerSeq = const Value.absent(),
this.pendingValuesJson = const Value.absent(),
this.tombstone = const Value.absent(),
required DateTime updatedAt,
this.rowid = const Value.absent(),
}) : accountKey = Value(accountKey),
tableId = Value(tableId),
rowKey = Value(rowKey),
phase = Value(phase),
updatedAt = Value(updatedAt);