isPlatformSupported static method
Check if the current platform is supported by CloudX SDK
Returns true if platform is production-ready, false otherwise
Currently:
- Android: Production-ready ✅
- iOS: Not supported ❌
Implementation
static bool isPlatformSupported() {
return !Platform.isIOS;
}