OverflowResult constructor

const OverflowResult({
  1. required String widgetName,
  2. required String fileName,
  3. required String suggestion,
  4. String? parentWidget,
  5. int? line,
  6. int? column,
  7. String? overflowDirection,
  8. double? overflowPixels,
})

Implementation

const OverflowResult({
  required this.widgetName,
  required this.fileName,
  required this.suggestion,
  this.parentWidget,
  this.line,
  this.column,
  this.overflowDirection,
  this.overflowPixels,
});