UrlChange class
Details of the change to a web view's url.
Platform specific implementations can add additional fields by extending this class.
This example demonstrates how to extend the UrlChange to provide additional platform specific parameters:
class AndroidUrlChange extends UrlChange {
const AndroidUrlChange({required super.url, required this.isReload});
final bool isReload;
}
- Annotations
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited