PipenRow.end constructor

const PipenRow.end({
  1. Key? key,
  2. Widget? child,
  3. EdgeInsets? margin,
  4. Iterable<Widget>? listable,
  5. List<Widget>? children,
  6. MainAxisSize? mainAxisSize,
  7. CrossAxisAlignment? vertical = CrossAxisAlignment.end,
  8. MainAxisAlignment? horizontal = MainAxisAlignment.end,
})

Implementation

const PipenRow.end({
  super.key,
  this.child,
  this.margin,
  this.listable,
  this.children,
  this.mainAxisSize,
  this.vertical = CrossAxisAlignment.end,
  this.horizontal = MainAxisAlignment.end,
});