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