Uri.https constructor Null safety

Uri.https(
  1. String authority,
  2. String unencodedPath,
  3. [Map<String, String>? 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, String>? queryParameters]) = _Uri.https;