DeviceFrameMode constructor

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

Implementation

DeviceFrameMode({
  required DeviceInfo device,
  Orientation orientation = Orientation.portrait,
  bool hasFrame = false,
}) : super(
        DeviceFrameConfig(
          device: device,
          orientation: orientation,
          hasFrame: hasFrame,
        ),
      );