HashChangeEvent constructor

HashChangeEvent(
  1. String type, {
  2. bool canBubble = true,
  3. bool cancelable = true,
  4. required String oldUrl,
  5. required String newUrl,
})

Implementation

HashChangeEvent(
  super.type, {
  bool canBubble = true,
  bool cancelable = true,
  required this.oldUrl,
  required this.newUrl,
}) : super.internal();