FractionallySizedBox constructor
Implementation
FractionallySizedBox({
this.widthFactor,
this.heightFactor,
}) : assert(widthFactor == null || (widthFactor >= 0 && widthFactor <= 1)),
assert(
heightFactor == null || (heightFactor >= 0 && heightFactor <= 1));