Device constructor
const
Device({})
Constructs a new instance of Device with specified dimensions and optional parameters.
Implementation
const Device({
required double x,
required double y,
this.name = 'Unknown',
this.fontVariant = 0,
}) : super(x, y);