CustomContainer constructor

const CustomContainer({
  1. Key? key,
  2. double width = 100,
  3. double height = 100,
  4. Color color = Colors.blue,
  5. Widget? child,
})

Implementation

const CustomContainer({
  super.key,
  this.width = 100,
  this.height = 100,
  this.color = Colors.blue,
  this.child,
});