end property

Row get end
// This extension is used to align the children of a Row to the end.

Row(
  children: [ Text('Hello'), Text('World') ]
).end,

Implementation

Row get end => Row(
      crossAxisAlignment: crossAxisAlignment,
      mainAxisAlignment: Maa.end,
      mainAxisSize: mainAxisSize,
      textDirection: textDirection,
      verticalDirection: verticalDirection,
      textBaseline: textBaseline,
      children: children,
    );