AlwaysDown constructor

const AlwaysDown({
  1. Key? key,
  2. required Widget child,
})

Rotates given child according to current device orientation.

Implementation

const AlwaysDown({
  Key? key,
  required this.child,
}) : super(key: key);