copyWith method
Implementation
RefreshSecretsCompanion copyWith({
Value<String>? userId,
Value<String>? refresh,
Value<String>? access,
Value<int>? rowid,
}) {
return RefreshSecretsCompanion(
userId: userId ?? this.userId,
refresh: refresh ?? this.refresh,
access: access ?? this.access,
rowid: rowid ?? this.rowid,
);
}