Device constructor

const Device({
  1. required DeviceInfo info,
  2. bool isFrameVisible = false,
  3. Orientation orientation = Orientation.portrait,
})

Implementation

const Device({
  required this.info,
  this.isFrameVisible = false,
  this.orientation = Orientation.portrait,
});