FoldWrapDelegate constructor

FoldWrapDelegate({
  1. required int foldLine,
  2. int maxLine = 0,
  3. bool isFold = false,
  4. double spacing = 0,
  5. double runSpacing = 0,
  6. required double extentHeight,
  7. int line = 0,
  8. ValueChanged<int>? onLine,
  9. int lineMaxLength = 0,
  10. bool foldWidgetInEnd = false,
})

Implementation

FoldWrapDelegate({
  required this.foldLine,
  this.maxLine = 0,
  this.isFold = false,
  this.spacing = 0,
  this.runSpacing = 0,
  required this.extentHeight,
  this.line = 0,
  this.onLine,
  this.lineMaxLength = 0,
  this.foldWidgetInEnd = false,
});