appStoreSync method
Implementation
Future<bool> appStoreSync() async {
if (_platform.isAndroid) {
return true;
} else if (_platform.isIOS) {
return await _channel.invokeMethod('appStoreSync');
}
throw PlatformException(
code: _platform.operatingSystem, message: "platform not supported");
}