backButton method
Implementation
Widget backButton({void Function()? onPressed}) {
return IconButton(
icon: const Icon(
Icons.arrow_back,
size: 24,
color: Colors.white,
),
onPressed: onPressed,
);
}
Widget backButton({void Function()? onPressed}) {
return IconButton(
icon: const Icon(
Icons.arrow_back,
size: 24,
color: Colors.white,
),
onPressed: onPressed,
);
}