getPopupItem function
Implementation
getPopupItem(String image, String title){
return Row(
children: [
Expanded(child: Text(title,style: const TextStyle(fontWeight: FontWeight.w500, color: black, fontSize: 16),)),
const Gap(30),
Image.asset(image, color: black, height: 16, width: 16,),
],
);
}