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