ContactItem constructor
const
ContactItem({
- Key? key,
- required String value,
- required ContactInfoType type,
- bool editable = false,
Implementation
const ContactItem({
Key? key,
required this.value,
required this.type,
this.editable = false,
}) : super(key: key);