ContactorView constructor

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

Implementation

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