FormFactors constructor

const FormFactors({
  1. Key? key,
  2. required List<FormFactor> formFactors,
  3. required Widget child,
  4. 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);