isSpellCheckingEnabled method
- @SupportedPlatforms.new(platforms: [LinuxPlatform(apiName: 'webkit_web_context_get_spell_checking_enabled', apiUrl: 'https://wpewebkit.org/reference/stable/wpe-webkit-2.0/method.WebContext.get_spell_checking_enabled.html')])
Returns whether spell checking is enabled for this WebContext.
Officially Supported Platforms/Implementations:
- Linux WPE WebKit (Official API - webkit_web_context_get_spell_checking_enabled)
Use the PlatformWebViewEnvironment.isMethodSupported method to check if this method is supported at runtime.
Implementation
@SupportedPlatforms(
platforms: [
LinuxPlatform(
apiName: 'webkit_web_context_get_spell_checking_enabled',
apiUrl:
'https://wpewebkit.org/reference/stable/wpe-webkit-2.0/method.WebContext.get_spell_checking_enabled.html',
),
],
)
Future<bool> isSpellCheckingEnabled() {
throw UnimplementedError(
'isSpellCheckingEnabled is not implemented on the current platform',
);
}