NavigationParams constructor

const NavigationParams({
  1. Map<String, String> queryParameters = const {},
  2. String fragment = '',
  3. bool reload = false,
  4. bool replace = false,
  5. bool updateUrl = true,
})

Implementation

const NavigationParams({
  this.queryParameters = const {},
  this.fragment = '',
  this.reload = false,
  this.replace = false,
  this.updateUrl = true,
});