getPopupItem function

dynamic getPopupItem(
  1. String image,
  2. String title
)

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,),
    ],
  );
}