getAppStoreUri function
Returns the Uri for the app store on the current platform.
Implementation
Uri? getAppStoreUri() {
if (kIsWeb) return null;
if (Platform.isIOS) {
return Uri.parse(
'https://apps.apple.com/us/app/kohler-energy-management-pro/id1640298611',
);
}
if (Platform.isAndroid) {
return Uri.parse(
'https://play.google.com/store/apps/details?'
'id=com.kohlerpower.dealerservice',
);
}
return null;
}