args property

Map<String, dynamic> get args

Retrieves the arguments passed to the current route.

Returns a Map of arguments or null if no arguments were passed.

Implementation

Map<String, dynamic> get args {
  return Go(this).currentArgs ?? {};
}