KalamActionsCompanion.insert constructor
KalamActionsCompanion.insert({
- required String id,
- required String accountKey,
- required String actionKey,
- Value<
int> version = const Value.absent(), - Value<
String> kind = const Value.absent(), - required String payloadJson,
- required String status,
- Value<
String?> orderingKey = const Value.absent(), - Value<
String?> rowTableId = const Value.absent(), - Value<
String?> rowKey = const Value.absent(), - Value<
int> queuePosition = const Value.absent(), - Value<
int> attemptCount = const Value.absent(), - Value<
DateTime?> nextAttemptAt = const Value.absent(), - Value<
String?> lastError = const Value.absent(), - required DateTime createdAt,
- required DateTime updatedAt,
- Value<
int> rowid = const Value.absent(),
Implementation
KalamActionsCompanion.insert({
required String id,
required String accountKey,
required String actionKey,
this.version = const Value.absent(),
this.kind = const Value.absent(),
required String payloadJson,
required String status,
this.orderingKey = const Value.absent(),
this.rowTableId = const Value.absent(),
this.rowKey = const Value.absent(),
this.queuePosition = const Value.absent(),
this.attemptCount = const Value.absent(),
this.nextAttemptAt = const Value.absent(),
this.lastError = const Value.absent(),
required DateTime createdAt,
required DateTime updatedAt,
this.rowid = const Value.absent(),
}) : id = Value(id),
accountKey = Value(accountKey),
actionKey = Value(actionKey),
payloadJson = Value(payloadJson),
status = Value(status),
createdAt = Value(createdAt),
updatedAt = Value(updatedAt);