isSupported property

bool get isSupported

Whether native virtual background is supported on this platform

Implementation

bool get isSupported {
  if (kIsWeb) return false;
  return defaultTargetPlatform == TargetPlatform.android ||
      defaultTargetPlatform == TargetPlatform.iOS;
}