OrientationBuilder constructor Null safety
- {Key? key,
- required OrientationWidgetBuilder builder}
Creates an orientation builder.
The builder argument must not be null.
Implementation
const OrientationBuilder({
super.key,
required this.builder,
}) : assert(builder != null);