buildManageRole method

dynamic buildManageRole()

Implementation

buildManageRole() {
  return Expanded(
    child: IconButton(
      tooltip: 'Manage Role',
      icon: const Icon(
        CupertinoIcons.arrow_swap,
        color: Colors.grey,
      ),
      onPressed: () {
        sideBarXController.openRoleManagerDialog();
      },
    ),
  );
}