MCPcopy Create free account
hub / github.com/Dart-Code/Dart-Code / devToolsNotificationLastShown

Method devToolsNotificationLastShown

src/shared/vscode/workspace.ts:24–24  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

22 }
23
24 get devToolsNotificationLastShown(): number | undefined { return this.context.globalState.get<number>("devToolsNotificationLastShown"); }
25 set devToolsNotificationLastShown(value: number | undefined) { void this.context.globalState.update("devToolsNotificationLastShown", value); }
26 get devToolsNotificationDoNotShow(): boolean | undefined { return !!this.context.globalState.get("devToolsNotificationDoNotShowAgain"); }
27 set devToolsNotificationDoNotShow(value: boolean | undefined) { void this.context.globalState.update("devToolsNotificationDoNotShowAgain", value); }

Callers

nothing calls this directly

Calls 2

getMethod · 0.45
updateMethod · 0.45

Tested by

no test coverage detected