Container constructor

Container({
  1. required List<FlintWidget> children,
  2. BoxConstraints? constraints,
  3. EdgeInsets? padding,
  4. EdgeInsets? margin,
  5. String? backgroundColor,
  6. BoxBorder? border,
  7. BorderRadius? borderRadius,
  8. BoxShadow? shadow,
  9. BoxAlignment alignment = BoxAlignment.start,
  10. BoxDecoration? decoration,
  11. String? xData,
  12. String? xInit,
  13. String? xShow,
  14. Map<String, String>? xBind,
  15. Map<String, String>? xOn,
  16. String? xText,
  17. String? xHtml,
  18. String? xModel,
  19. String? xModelable,
  20. String? xFor,
  21. String? xTransition,
  22. String? xEffect,
  23. bool? xIgnore,
  24. String? xRef,
  25. bool? xCloak,
  26. String? xTeleport,
  27. bool? xIf,
  28. String? xId,
})

Implementation

Container({
  required this.children,
  this.constraints,
  this.padding,
  this.margin,
  this.backgroundColor,
  this.border,
  this.borderRadius,
  this.shadow,
  this.alignment = BoxAlignment.start,
  this.decoration,
  super.xData,
  super.xInit,
  super.xShow,
  super.xBind,
  super.xOn,
  super.xText,
  super.xHtml,
  super.xModel,
  super.xModelable,
  super.xFor,
  super.xTransition,
  super.xEffect,
  super.xIgnore,
  super.xRef,
  super.xCloak,
  super.xTeleport,
  super.xIf,
  super.xId,
});