PageSettings constructor

PageSettings(
  1. Uri uri, [
  2. Object? arguments
])

Constructs a PageSettings object with the given URI and optional arguments.

The uri parameter specifies the URI associated with the page settings. The optional arguments parameter can be provided to pass additional arguments.

Implementation

PageSettings(
  this.uri, [
  Object? arguments,
]) : super(arguments: arguments);