fractionallySizedBox method
Implementation
Widget fractionallySizedBox({
final double? widthFactor,
final double? heightFactor,
}) {
return FractionallySizedBox(
widthFactor: widthFactor,
heightFactor: heightFactor,
child: this,
);
}