Container constructor

Container({
  1. Key? key,
  2. double? height,
  3. double? width,
  4. String? color,
  5. dynamic padding,
  6. dynamic margin,
  7. dynamic borderRadius,
  8. String? borderColor,
  9. double? borderWidth,
  10. String? alignment,
  11. Map<String, dynamic>? gradient,
  12. SduiNode? child,
})

Implementation

Container({
  Key? key,
  this.height,
  this.width,
  this.color,
  this.padding,
  this.margin,
  this.borderRadius,
  this.borderColor,
  this.borderWidth,
  this.alignment,
  this.gradient,
  this.child,
}) : super(key: key);