getUrl method

String? getUrl()

Get the Aloha url.

Aloha's baseUrl setting or "" if not set

Implementation

String? getUrl() {
  if (!_ready) throw AlohaException(AlohaException.notReady);
  return _alohaContext.callMethod('getAlohaUrl');
}