AuthMatcher.byUrl constructor

const AuthMatcher.byUrl(
  1. bool matchUrl(
    1. String url
    )
)

provide lambda for url

method will be upper case

url will be all but queries

Implementation

const factory AuthMatcher.byUrl(
  bool Function(String url) matchUrl,
) = AuthMatcherByUrlImpl;