Container constructor
Container({})
Implementation
Container({
this.child,
this.color,
this.padding,
this.margin,
this.borderRadius,
this.borderColor,
this.borderWidth,
this.shadow,
this.width,
this.height,
this.alignment,
Object? onTap,
String? name,
Object? visible,
}) : onTap = normalizeActionSequence(onTap, parameterName: 'onTap'),
super(name: name, visible: _normalizeVisibility(visible));