fractionalBox method
Extension for FractionallySizedBox
Implementation
Widget fractionalBox(
{Key? key,
required double heightFactor,
required double widthFactor,
Alignment? alignment}) =>
FractionallySizedBox(
key: key,
heightFactor: heightFactor,
widthFactor: widthFactor,
alignment: alignment ?? Alignment.center,
child: this,
);