goBack<T> method

void goBack<T>([
  1. T? result
])

Implementation

void goBack<T>([T? result]) {
  return Navigator.pop<T>(context, result);
}