TheContainers constructor

TheContainers({
  1. Key? key,
  2. double? roundborder,
  3. required Widget afterWidget,
  4. required double? height,
  5. required double? width,
  6. double? afterheight,
  7. double? afterwidth,
  8. required Color? color,
  9. Color? aftercolor,
  10. required Widget insideWidget,
})

Implementation

TheContainers({
 Key? key,
  this.roundborder,
  required this.afterWidget,
 required this.height,
 required this.width,
 this.afterheight,
 this.afterwidth,
 required this.color,
 this.aftercolor,
 required this.insideWidget,
  }) : super(key: key);