SearchScreen constructor

const SearchScreen({
  1. Key? key,
  2. required SearchedListModel searchedListModel,
  3. required Widget filterIcon,
  4. required String fieldNameSearching,
  5. SearchedDataLoader? loadSearchedData,
  6. InputDecoration? inputDecoration,
})

Implementation

const SearchScreen(
    {super.key,
    required this.searchedListModel,
    required this.filterIcon,
    required this.fieldNameSearching,
    this.loadSearchedData,
    this.inputDecoration});