arguments property

Object? arguments
final

argumentsare used for deeplinking. Think of it as query after path in a URL.

For example:

final argument = <String, dynamic> {
'productID': 123,
'productName': 'Shirt',
}

And if name is product This will be shown in the browser URL arguments, /product?productID=123&productName=Shirt', you can then receive the [arguments] in the second page as a Map<String, String> . Must be serializable` or will give out error.

Implementation

final Object? arguments;