copyWith method
Implementation
SyncPointsCompanion copyWith({
Value<String>? scopeName,
Value<String>? scopeKeys,
Value<String>? lastServerTs,
Value<int>? rowid,
}) {
return SyncPointsCompanion(
scopeName: scopeName ?? this.scopeName,
scopeKeys: scopeKeys ?? this.scopeKeys,
lastServerTs: lastServerTs ?? this.lastServerTs,
rowid: rowid ?? this.rowid,
);
}