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