copyWith method
Implementation
KalamCachedRowsCompanion copyWith({
Value<String>? accountKey,
Value<String>? tableId,
Value<String>? rowKey,
Value<String>? valuesJson,
Value<DateTime>? updatedAt,
Value<int>? rowid,
}) {
return KalamCachedRowsCompanion(
accountKey: accountKey ?? this.accountKey,
tableId: tableId ?? this.tableId,
rowKey: rowKey ?? this.rowKey,
valuesJson: valuesJson ?? this.valuesJson,
updatedAt: updatedAt ?? this.updatedAt,
rowid: rowid ?? this.rowid,
);
}