(warningId: string)
| 34 | public getSdkDeprecationNoticeDoNotShow(dartSdkVersion: string): boolean { return !!this.context.globalState.get(`dartSdk${dartSdkVersion}DeprecationNotificationDoNotShowAgain`); } |
| 35 | public setSdkDeprecationNoticeDoNotShow(dartSdkVersion: string, value: boolean | undefined) { void this.context.globalState.update(`dartSdk${dartSdkVersion}DeprecationNotificationDoNotShowAgain`, value); } |
| 36 | public getAppWarningDoNotShow(warningId: string): boolean { return !!this.context.globalState.get(`appWarning${warningId}DoNotShowAgain`); } |
| 37 | public setAppWarningDoNotShow(warningId: string, value: boolean | undefined) { void this.context.globalState.update(`appWarning${warningId}DoNotShowAgain`, value); } |
| 38 | get hasWarnedAboutFormatterSyntaxLimitation(): boolean { return !!this.context.globalState.get("hasWarnedAboutFormatterSyntaxLimitation"); } |
| 39 | set hasWarnedAboutFormatterSyntaxLimitation(value: boolean) { void this.context.globalState.update("hasWarnedAboutFormatterSyntaxLimitation", value); } |
no test coverage detected