size method

SizedBox size({
  1. double? height,
  2. double? width,
})

Implementation

SizedBox size({double? height, double? width}) => SizedBox(
      height: height,
      width: width,
      child: this,
    );