getInstance static method

dynamic getInstance()

Implementation

static getInstance() {
  if (_instance == null) {
    throw 'sdkInit function should be called first';
  }
  return _instance;
}