alignAtCenterRight method
Aligns the widget at the center right of its parent.
Implementation
Align alignAtCenterRight({
Key? key,
double? heightFactor,
double? widthFactor,
}) =>
Align(
key: key,
alignment: Alignment.centerRight,
heightFactor: heightFactor,
widthFactor: widthFactor,
child: this,
);