DimensionSizedBox constructor

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

Implementation

const DimensionSizedBox({
  Key? key,
  this.width,
  this.height,
  Widget? child,
}) : super(key: key, child: child);