import 'dart:io' show Platform; if (Platform.isIOS) { doSmthIOSSpecific(); } if (Platform.isAndroid) { doSmthAndroidSpecific(); }
0 Comments