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