init static method

Future init()

Implementation

static Future init() async {
  if (_init) return;
  _init = true;

  try {
    await _initApiStorage();

    _initApiExceptionHander();
    _initApiResponseHander();

    _initBinders();
  } catch (e) {
    _init = false;
  }
}