instance property

LinkForty get instance

Returns the shared instance of LinkForty.

Throws NotInitializedError if the SDK has not been initialized.

Implementation

static LinkForty get instance {
  final inst = _instance;
  if (inst == null) {
    throw const NotInitializedError();
  }
  return inst;
}