Uri.https constructor

Uri.https(
  1. String authority,
  2. String unencodedPath,
  3. [Map<String, dynamic>? queryParameters]
)

Creates a new https URI from authority, path and query.

This constructor is the same as Uri.http except for the scheme which is set to https.

Implementation

factory Uri.https(String authority, String unencodedPath,
    [Map<String, dynamic>? queryParameters]) = _Uri.https;

© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dart.dev/stable/2.13.0/dart-core/Uri/Uri.https.html