device property
set
device
(DeviceInfo? value)
Set device info.
Implementation
set device(DeviceInfo? value) {
if (_device?.identifier != value?.identifier) {
_device = value;
applyVirtualConfiguration();
markNeedsLayout();
markNeedsPaint();
}
}