DeviceFrameSetting constructor

DeviceFrameSetting({
  1. required DeviceInfo device,
  2. Orientation orientation = Orientation.portrait,
  3. bool hasFrame = true,
})

Implementation

DeviceFrameSetting({
  required this.device,
  this.orientation = Orientation.portrait,
  this.hasFrame = true,
});