FormFactors constructor
const
FormFactors({
- Key? key,
- required List<
FormFactor> formFactors, - required Widget child,
- FormFactorOrientationLocks orientationLocks = const FormFactorOrientationLocks(),
Creates an instance of FormFactors widget.
Implementation
const FormFactors({
Key? key,
required this.formFactors,
required this.child,
this.orientationLocks = const FormFactorOrientationLocks(),
}) : super(key: key);