pushExternal method

  1. @Deprecated('Use toExternal instead')
void pushExternal(
  1. String newUrl, {
  2. bool openNewTab = false,
})

Goes to an url which is not in the app

On the web, you can set openNewTab to true to open this url in a new tab

Implementation

@Deprecated('Use toExternal instead')
void pushExternal(String newUrl, {bool openNewTab = false}) =>
    toExternal(newUrl, openNewTab: openNewTab);