pop<T> method

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

返回上一页 result 返回上一页的结果

Implementation

void pop<T>({T? result}) {
  _delegate.pop<T>(result);
}