NextRow constructor

const NextRow({
  1. Key? key,
  2. EdgeInsets padding = const EdgeInsets.all(0),
  3. VerticalDirection verticalDirection = VerticalDirection.down,
  4. WrapAlignment verticalAlignment = WrapAlignment.start,
  5. required List<NextCol> children,
  6. WrapAlignment horizontalAlignment = WrapAlignment.start,
  7. double horizontalSpacing = 20.0,
  8. double verticalSpacing = 20.0,
})

Implementation

const NextRow({
  Key? key,
  this.padding = const EdgeInsets.all(0),
  this.verticalDirection = VerticalDirection.down,
  this.verticalAlignment = WrapAlignment.start,
  required this.children,
  this.horizontalAlignment = WrapAlignment.start,
  this.horizontalSpacing = 20.0,
  this.verticalSpacing = 20.0,
}) : super(key: key);