DialogContent constructor

const DialogContent({
  1. Key? key,
  2. required String searchHint,
  3. required String notFoundHintTitle,
  4. required String notFoundHintSubTitle,
  5. required String filterDescription,
  6. required Future<Map<String, List<SmartSearchResult>>> resultsQuery(
    1. String,
    2. List<String>
    ),
  7. required Color dialogBackgroundColor,
})

Implementation

const DialogContent({
  super.key,
  required this.searchHint,
  required this.notFoundHintTitle,
  required this.notFoundHintSubTitle,
  required this.filterDescription,
  required this.resultsQuery,
  required this.dialogBackgroundColor,
});