getDeviceOS static method
Implementation
static Future<String> getDeviceOS() async {
if (Platform.isIOS) {
IosDeviceInfo iosInfo = await InngageProperties.deviceInfo.iosInfo;
return iosInfo.systemVersion;
} else {
AndroidDeviceInfo androidInfo =
await InngageProperties.deviceInfo.androidInfo;
return androidInfo.version.release;
}
}