setMaxWidth method

Widget setMaxWidth({
  1. required double width,
})

Implementation

Widget setMaxWidth({required double width}) {
  return SizedBox(
    width: width,
    child: this,
  );
}