instance property
Retrieves the current instance of IntroductionInterface.
Implementation
static IntroductionInterface get instance => _instance;
Sets the current instance of IntroductionInterface.
Throws an error if the provided instance does not match the token.
Implementation
static set instance(IntroductionInterface instance) {
DataInterface.verify(instance, _token);
_instance = instance;
}