instance property

AllStack get instance

Implementation

static AllStack get instance {
  if (_instance == null) {
    throw Exception(
        'AllStack SDK has not been initialized. Call AllStack.init() first.');
  }
  return _instance!;
}