getMemoOptions
fun <TResult> getMemoOptions(tableOptions: TableOptionsResolved<*>, debugLevel: String, key: String, onChange: (result: TResult) -> Unit? = null): MemoOptions<TResult>
Builds a MemoOptions from a debug level ("debugAll", "debugCells", "debugTable", "debugColumns", "debugRows", "debugHeaders") and a memo key. The debug callback reports whether the relevant debug flag is enabled; debugAll takes priority over the per-area flag.
The memo key is fixed to false here because commonMain has no portable build-time "development" flag. This disables memo's debug timing output — set up an explicit feature flag if you need it.