init static method

void init()

Initializes the static AutoUssdFlutter singleton This should be called early on in the app runtime

Implementation

static void init() {
  if (_instance == null) {
    _instance = AutoUssdFlutter._();
  }
}