isSupported property
Whether native virtual background is supported on this platform
Implementation
bool get isSupported {
if (kIsWeb) return false;
return defaultTargetPlatform == TargetPlatform.android ||
defaultTargetPlatform == TargetPlatform.iOS;
}