CustomNavigationBarItem.contacts constructor

const CustomNavigationBarItem.contacts({
  1. Key? key,
})

Constructs a CustomNavigationBarItem for a HomeTab.contacts.

Implementation

const CustomNavigationBarItem.contacts({Key? key})
  : this._(
      key: key,
      tab: HomeTab.chats,
      child: const SvgIcon(SvgIcons.contacts, key: Key('ContactsButton')),
    );