CustomContainer constructor

const CustomContainer({
  1. Key? key,
  2. required Widget child,
  3. Color? containerColor,
  4. double? borederRadius,
  5. Color? borderColor,
  6. double? borderWidth,
})

Implementation

const CustomContainer({Key? key,required this.child, this.containerColor,this.borederRadius,this.borderColor,this.borderWidth}) : super(key: key);