toSizedBox method

Widget toSizedBox([
  1. double? width,
  2. double? height
])

Implementation

Widget toSizedBox([double? width, double? height]) =>
    SizedBox(width: width, height: height, child: this);