PipenRow.center constructor

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

Implementation

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