of static method
The data from the closest FormFactors instance.
Implementation
static FormFactorsData of(BuildContext context) {
final _FormFactorsInherited? formFactorsInherited =
context.dependOnInheritedWidgetOfExactType<_FormFactorsInherited>();
assert(formFactorsInherited != null,
'No "_FormFactorsInherited" found in context');
return formFactorsInherited!.data;
}