AutoWidget constructor
const
AutoWidget({
- Key? key,
- required Widget child,
- AlignmentGeometry alignment = Alignment.center,
- BoxFit fit = BoxFit.scaleDown,
Implementation
const AutoWidget({
Key? key,
required this.child,
this.alignment = Alignment.center,
this.fit = BoxFit.scaleDown,
}) : super(key: key);