instance property

IntroductionInterface instance

Retrieves the current instance of IntroductionInterface.

Implementation

static IntroductionInterface get instance => _instance;
void instance=(IntroductionInterface 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;
}