maxHeight method

Widget maxHeight(
  1. double maxHeight
)

maxHeight

Implementation

Widget maxHeight(double maxHeight) => ConstrainedBox(
      constraints: BoxConstraints(maxHeight: maxHeight),
      child: this,
    );