OrientationLayout constructor

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

Implementation

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