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