getCurrentPlatformConfig static method
Get platform-specific configuration
Implementation
static Map<String, dynamic> getCurrentPlatformConfig() {
if (PlatformUtils.isWeb) {
return _getWebConfig();
} else if (PlatformUtils.isIOS) {
return _getIOSConfig();
} else if (PlatformUtils.isAndroid) {
return _getAndroidConfig();
} else {
return _getDefaultConfig();
}
}