OrientationBuilder constructor

const OrientationBuilder({Key key, @required OrientationWidgetBuilder builder })

Creates an orientation builder.

The builder argument must not be null.

Implementation

const OrientationBuilder({
  Key key,
  @required this.builder,
}) : assert(builder != null),
     super(key: key);