ContactorListView constructor

const ContactorListView({
  1. Key? key,
  2. required List<ContactorDataListData> dataList,
  3. required dynamic onSelectedData(
    1. ContactorDataListData
    ),
  4. bool shrinkWrap = false,
  5. bool scrollEnabled = true,
  6. bool? showGroupCode,
})

Implementation

const ContactorListView({
  Key? key,
  required this.dataList,
  required this.onSelectedData,
  this.shrinkWrap = false,
  this.scrollEnabled = true,
  this.showGroupCode,
}) : super(key: key);