AppCmsSizedBox constructor

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

Implementation

const AppCmsSizedBox(
    {super.key,
    required this.width,
    required this.height,
    required this.child});