align method
Wraps this widget with an Align widget.
Implementation
Widget align(
Alignment alignment, {
double? widthFactor,
double? heightFactor,
}) =>
Align(
alignment: alignment,
widthFactor: widthFactor,
heightFactor: heightFactor,
child: this,
);