CodeNestContainer constructor

const CodeNestContainer({
  1. Key? key,
  2. double? width,
  3. double? height,
  4. Color? color,
  5. BorderRadiusGeometry? borderRadius,
  6. EdgeInsetsGeometry? padding,
  7. EdgeInsetsGeometry? margin,
  8. BoxBorder? border,
  9. List<BoxShadow>? boxShadow,
  10. Widget? child,
  11. AlignmentGeometry? alignment,
  12. Gradient? gradient,
})

Implementation

const CodeNestContainer({
  super.key,
  this.width,
  this.height,
  this.color,
  this.borderRadius,
  this.padding,
  this.margin,
  this.border,
  this.boxShadow,
  this.child,
  this.alignment,
  this.gradient,
});