copyWith method
Implementation
PendingOpsCompanion copyWith({
Value<String>? opId,
Value<String>? scopeName,
Value<String>? scopeKeys,
Value<String>? type,
Value<String>? id,
Value<String?>? payload,
Value<String>? updatedAt,
Value<int>? rowid,
}) {
return PendingOpsCompanion(
opId: opId ?? this.opId,
scopeName: scopeName ?? this.scopeName,
scopeKeys: scopeKeys ?? this.scopeKeys,
type: type ?? this.type,
id: id ?? this.id,
payload: payload ?? this.payload,
updatedAt: updatedAt ?? this.updatedAt,
rowid: rowid ?? this.rowid,
);
}