buildProfile method

Widget buildProfile()

Implementation

Widget buildProfile() {
  return Expanded(
    child: InkWell(
      onTap: () {
        sideBarXController.toggleProfileExpanded();
      },
      child: const ProfileAvatar(
        imagePath: 'assets/images/demo_profile.png',
        height: 35.0,
        width: 35.0,
      ),
    ),
  );
}