match method

  1. @override
bool match(
  1. String? route
)
override

Implementation

@override
match(String? route) {
  if (!super.match(route)) {
    return false;
  }

  // A route factory additionally validates that the route has all the required
  // arguments specified by the arguments factory which can be checked by attempting
  // to build the arguments for the given route.
  return _buildArgs(route) != null;
}