UrlSchemeData constructor

UrlSchemeData({
  1. required String scheme,
  2. String? url,
  3. String? host,
  4. String? path,
  5. List<Map<String, String>> queryParameters = const [],
})

Implementation

UrlSchemeData({
  required this.scheme,
  this.url,
  this.host,
  this.path,
  this.queryParameters = const [],
});