intrinsicWidth method

Widget intrinsicWidth({
  1. Key? key,
})

A widget that sizes its child to the child's intrinsic width.

Implementation

Widget intrinsicWidth({
  Key? key,
}) {
  return IntrinsicWidth(
    key: key,
    child: this,
  );
}