buildMobile method
Implementation
Widget buildMobile() {
return InkWell(
onTap: () {
handleTakeBackLater();
},
child: Container(
height: 40,
width: 40,
decoration: const BoxDecoration(
color: Colors.transparent,
),
child: const Icon(
Icons.close,
color: Colors.red,
),
),
);
}