instance property

Allstak get instance

Implementation

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