DeviceClass constructor
DeviceClass({
- required int value,
try to use required here indicating that value is non nullable.
Implementation
DeviceClass({required this.value});
try to use required here indicating that value is non nullable.
DeviceClass({required this.value});