pop<T> static method

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

Implementation

static void pop<T>({T? result}) {
  getTopNavigatorDialog()?.pop<T>(result: result);
}