getDeviceManufacturer static method
Implementation
static Future<String> getDeviceManufacturer() async {
if (Platform.isIOS) {
return 'Apple';
} else {
AndroidDeviceInfo androidInfo =
await InngageProperties.deviceInfo.androidInfo;
return androidInfo.manufacturer;
}
}