ViewportState constructor

ViewportState({
  1. required List<DeviceInfo> devices,
  2. Orientation orientation = Orientation.portrait,
  3. bool hasFrame = true,
})

Implementation

ViewportState({
  required this.devices,
  this.orientation = Orientation.portrait,
  this.hasFrame = true,
});