getPluginUrl method

String? getPluginUrl(
  1. String name
)

Gets a plugin's url.

Given the name returns the plugin url as a string

Implementation

String? getPluginUrl(String name) {
  if (!_ready) throw AlohaException(AlohaException.notReady);
  return _alohaContext.callMethod('getPluginUrl', [name]);
}