alignXY method
Implementation
Align alignXY(double x, double y, {Key? key, double? heightFactor, double? widthFactor}) => Align(
key: key,
alignment: Alignment(x, y),
heightFactor: heightFactor,
widthFactor: widthFactor,
child: this,
);