SuggestionItem<T> constructor

SuggestionItem<T>({
  1. required Key widgetKey,
  2. required T data,
  3. required double width,
  4. required double height,
  5. int currentWeight = 1,
  6. required double x,
  7. required double y,
  8. int iColumn = 0,
  9. int iRow = 0,
})

Implementation

SuggestionItem({
  required this.widgetKey,
  required this.data,
  required this.width,
  required this.height,
  this.currentWeight = 1,
  required this.x,
  required this.y,
  this.iColumn = 0,
  this.iRow = 0,
});