popScreen<T extends Object?> method

void popScreen<T extends Object?>([
  1. T? result
])

Pops the current screen

Implementation

void popScreen<T extends Object?>([T? result]) {
  Navigator.pop<T>(this, result);
}