Dart DocumentationdartscaleNoSuchPluginError

NoSuchPluginError class

Thrown when trying to access a plugin of the Sandbox which doesn't exists/is not registered.

class NoSuchPluginError implements Exception {
 
 String message;
 
 NoSuchPluginError(String pluginName) {
   this.message = "No plugin named ${pluginName} found!";
 }
}

Implements

Exception

Constructors

new NoSuchPluginError(String pluginName) #

NoSuchPluginError(String pluginName) {
 this.message = "No plugin named ${pluginName} found!";
}

Properties

String message #

String message