ResultsDisplay constructor

const ResultsDisplay({
  1. Key? key,
  2. ScrapeResult? result,
  3. String? errorMessage,
  4. bool isLoading = false,
  5. VoidCallback? onClear,
})

Implementation

const ResultsDisplay({
  super.key,
  this.result,
  this.errorMessage,
  this.isLoading = false,
  this.onClear,
});