intrinsicWidth method
Returns a new IntrinsicWidth widget.
The stepWidth and stepHeight parameters are used to set the width and height of the widget.
Implementation
IntrinsicWidth intrinsicWidth({
Key? key,
double? stepWidth,
double? stepHeight,
}) {
return IntrinsicWidth(
key: key,
stepHeight: stepHeight,
stepWidth: stepWidth,
child: this,
);
}