OrientationLayout constructor

OrientationLayout({
  1. Key? key,
  2. Widget? landscape,
  3. required Widget portrait,
})

Implementation

OrientationLayout({
  Key? key,
  this.landscape,
  required this.portrait,
}) : super(key: key);