getRealmURL function

String getRealmURL(
  1. String realm,
  2. String authServerUrl
)

Get the Realm URL

Implementation

String getRealmURL(String realm, String authServerUrl) {
  final url = authServerUrl.endsWith('/') ? authServerUrl : '$authServerUrl/';
  return '${url}realms/${Uri.encodeComponent(realm)}';
}