right method
Implementation
Widget right({
double? widthFactor,
double? heightFactor,
Key? key,
}) {
return Align(
alignment: Alignment.centerRight,
widthFactor: widthFactor,
heightFactor: heightFactor,
child: this,
key: key,
);
}