CustomScreen constructor

CustomScreen({
  1. required Size? size,
  2. required Widget child,
  3. String? label,
  4. DeviceInfo? androidDevice,
  5. DeviceInfo? cupertinoDevice,
  6. Orientation? orientation = Orientation.portrait,
})

Implementation

CustomScreen({
  required this.size,
  required this.child,
  this.label,
  this.androidDevice,
  this.cupertinoDevice,
  this.orientation = Orientation.portrait,
});