copyWith method
Implementation
CacheItemsCompanion copyWith({
Value<String>? key,
Value<String>? data,
Value<DateTime>? createdAt,
Value<DateTime>? expiresAt,
Value<int>? priority,
Value<int>? size,
Value<int>? rowid,
}) {
return CacheItemsCompanion(
key: key ?? this.key,
data: data ?? this.data,
createdAt: createdAt ?? this.createdAt,
expiresAt: expiresAt ?? this.expiresAt,
priority: priority ?? this.priority,
size: size ?? this.size,
rowid: rowid ?? this.rowid,
);
}