PickerWrapBuilderConfig constructor

const PickerWrapBuilderConfig({
  1. Axis direction = Axis.horizontal,
  2. WrapAlignment alignment = WrapAlignment.start,
  3. WrapCrossAlignment crossAxisAlignment = WrapCrossAlignment.start,
  4. VerticalDirection verticalDirection = VerticalDirection.down,
  5. WrapAlignment runAlignment = WrapAlignment.start,
  6. double? width = double.infinity,
  7. double? height,
  8. BoxConstraints? constraints,
  9. Decoration? decoration,
  10. double spacing = 10,
  11. double runSpacing = 10,
  12. EdgeInsetsGeometry? margin = const EdgeInsets.all(10),
})

Implementation

const PickerWrapBuilderConfig(
    {this.direction = Axis.horizontal,
    this.alignment = WrapAlignment.start,
    this.crossAxisAlignment = WrapCrossAlignment.start,
    this.verticalDirection = VerticalDirection.down,
    this.runAlignment = WrapAlignment.start,
    this.width = double.infinity,
    this.height,
    this.constraints,
    this.decoration,
    this.spacing = 10,
    this.runSpacing = 10,
    this.margin = const EdgeInsets.all(10)});