canUseVirtualBackground property
bool
get
canUseVirtualBackground
Quick check if virtual backgrounds can work
Implementation
bool get canUseVirtualBackground {
if (kIsWeb) return false;
return defaultTargetPlatform == TargetPlatform.android ||
defaultTargetPlatform == TargetPlatform.iOS;
}