ExitButton function

Widget ExitButton(
  1. BuildContext context,
  2. Widget home
)

Implementation

Widget ExitButton(BuildContext context, Widget home) {
    return CustomIconButton(
        () { resetNavTo(context, home); },
        'close',
        'lg'
    );
}