sized method

SizedBox sized({
  1. Key? key,
  2. double? w,
  3. double? h,
})

see SizedBox

Implementation

SizedBox sized({
  Key? key,
  double? w,
  double? h,
}) =>
    SizedBox(
      key: key,
      width: w,
      height: h,
      child: this,
    );