ContactorSearchView constructor

ContactorSearchView({
  1. Key? key,
  2. required List<ContactorDataListData> listData,
  3. required dynamic onSelectedData(
    1. ContactorDataListData,
    2. int
    ),
  4. bool? showGroupCode,
  5. bool onlyShowSearch = false,
  6. Color backgroundColor = const Color(0xFFFAFAFA),
})

Implementation

ContactorSearchView({
  Key? key,
  required this.listData,
  required this.onSelectedData,
  this.showGroupCode,
  this.onlyShowSearch = false,
  this.backgroundColor = const Color(0xFFFAFAFA),
}) : super(key: key);