ContactorView constructor

const ContactorView({
  1. Key? key,
  2. required dynamic onSelectedData(
    1. ContactorDataListData
    ),
  3. required List<ContactorDataListData> dataList,
  4. String title = '选择联系人',
  5. Color? letterSelectedColor,
  6. bool? showGroupCode,
  7. Color backgroundColor = const Color(0xFFFAFAFA),
  8. bool canPop = true,
})

Implementation

const ContactorView({
  Key? key,
  required this.onSelectedData,
  required this.dataList,
  this.title = '选择联系人',
  this.letterSelectedColor,
  this.showGroupCode,
  this.backgroundColor = const Color(0xFFFAFAFA),
  this.canPop = true,
}) : super(key: key);