ContactorDataListData constructor

ContactorDataListData({
  1. int? id,
  2. String? code,
  3. String? pinyin,
  4. String? headerImageUrl,
  5. required String name,
  6. required String groupCode,
})

Implementation

ContactorDataListData({
  this.id,
  this.code,
  this.pinyin,
  this.headerImageUrl,
  required this.name,
  required this.groupCode,
});