ContactItemsCard constructor

const ContactItemsCard({
  1. Key? key,
  2. required String title,
  3. required List<ContactType<ValueObject<String>>>? data,
  4. required ContactInfoType type,
  5. String? addMessage,
  6. Function? onAddContactInfo,
})

Implementation

const ContactItemsCard({
  Key? key,
  required this.title,
  required this.data,
  required this.type,
  this.addMessage,
  this.onAddContactInfo,
}) : super(key: key);