I have to get Android Device Name,
I got the IOS Device Data as Below.
DeviceInfoPlugin deviceInfo = await AppUtils.getDeviceDetails();
IosDeviceInfo iosInfo = await deviceInfo.iosInfo;
deviceModel = iosInfo.model!;
deviceName = iosInfo.name!;
deviceOS = "IOS";
osVersion = iosInfo.systemVersion!;
But How I can get Android Device Name? Can I have to use any Other Package? because in this package i can not find any option to get android device name.