getIosDeviceInfo method
Implementation
DeviceDetailsModel getIosDeviceInfo(IosDeviceInfo data) {
return DeviceDetailsModel(
os:'IOS',
brand:'APPLE',
device:data.systemVersion,
model:data.model,
lastInstalledOn: DateTime.now().millisecondsSinceEpoch.toString(),
versionRelease: data.utsname.release.toString() +"--"+ data.utsname.version.toString()
);
}