xRow method
Implementation
Widget xRow(
{Key key,
MainAxisSize mainAxisSize = MainAxisSize.max,
TextBaseline textBaseline,
TextDirection textDirection,
VerticalDirection verticalDirection = VerticalDirection.down,
CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start}) {
return Row(
mainAxisSize: mainAxisSize,
textBaseline: textBaseline,
textDirection: textDirection,
verticalDirection: verticalDirection,
crossAxisAlignment: crossAxisAlignment,
mainAxisAlignment: mainAxisAlignment,
key: key,
children: this,
);
}