CommunicationSettingItem constructor

const CommunicationSettingItem({
  1. required bool isActive,
  2. required Function onTapHandler,
  3. required String title,
  4. required String subtitle,
  5. required CommunicationType type,
})

Implementation

const CommunicationSettingItem({
  required this.isActive,
  required this.onTapHandler,
  required this.title,
  required this.subtitle,
  required this.type,
});