pop<T> method

void pop<T>({
  1. dynamic result,
})

performs a simple Navigator.pop action and returns given result

Implementation

void pop<T>({result}) => Navigator.pop(this, result);