isMuted method
- @SupportedPlatforms.new(platforms: [LinuxPlatform(apiName: 'webkit_web_view_get_is_muted', apiUrl: 'https://wpewebkit.org/reference/stable/wpe-webkit-2.0/method.WebView.get_is_muted.html', available: '2.30')])
Returns whether the webpage audio is muted.
Returns true if the page audio is muted, false otherwise.
Officially Supported Platforms/Implementations:
- Linux WPE WebKit 2.30+ (Official API - webkit_web_view_get_is_muted)
Use the PlatformInAppWebViewController.isMethodSupported method to check if this method is supported at runtime.
Implementation
@SupportedPlatforms(
platforms: [
LinuxPlatform(
apiName: 'webkit_web_view_get_is_muted',
apiUrl:
'https://wpewebkit.org/reference/stable/wpe-webkit-2.0/method.WebView.get_is_muted.html',
available: '2.30',
),
],
)
Future<bool> isMuted() {
throw UnimplementedError(
'${PlatformInAppWebViewControllerMethod.isMuted.name} is not implemented on the current platform',
);
}