CustomContainer constructor

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

Implementation

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