RSizedBox constructor

const RSizedBox({
  1. Key? key,
  2. double? height,
  3. double? width,
  4. Widget? child,
})

Implementation

const RSizedBox({
  Key? key,
  double? height,
  double? width,
  Widget? child,
})  : _square = false,
      super(key: key, child: child, width: width, height: height);