AddContactWrapper constructor

const AddContactWrapper({
  1. Key? key,
  2. required bool isPhone,
  3. required ContactProvider? provider,
  4. required Function onSave,
  5. required ContactInfoType type,
  6. required bool primary,
})

Implementation

const AddContactWrapper({
  Key? key,
  required this.isPhone,
  required this.provider,
  required this.onSave,
  required this.type,
  required this.primary,
}) : super(key: key);