backButton method

Widget backButton()

Implementation

Widget backButton()
{
  return IconButton(
      onPressed: () => back(),
      icon: const Icon(Icons.arrow_back),
      iconSize: 25,
      color: Colors.black87,
    tooltip: 'Back',
  );
}