ContactItem constructor

const ContactItem({
  1. Key? key,
  2. required String value,
  3. required ContactInfoType type,
  4. bool editable = false,
})

Implementation

const ContactItem({
  Key? key,
  required this.value,
  required this.type,
  this.editable = false,
}) : super(key: key);