I try to get android Device name.
Now I am using package device_info_plus v4.1.2, but it can't get this info.
DeviceInfoPlugin deviceInfo = DeviceInfoPlugin();
AndroidDeviceInfo androidInfo = await deviceInfo.androidInfo;
Output
print('Running on Product ${androidInfo.product}'); --show sdk_gphone_x86_arm
print('Running on Board ${androidInfo.board}'); --show oldfish_x86
print('Running on Device ${androidInfo.device}'); --show generic_x86_arm
print('Running on Model ${androidInfo.model}'); --show AOSP on IA Emulator
Could you guys recommend the other one that can get that info?