bodyOnBackPressed method

WillPopScope bodyOnBackPressed({
  1. required Widget body,
})

Implementation

WillPopScope bodyOnBackPressed({
  required final Widget body,
}) =>
    WillPopScope(
      onWillPop: onBackPressed,
      child: body,
    );