init method

初始化

Implementation

Future<SystemStore> init() async {
  try {
    getSystemConfigCache();
    initClientId();
    await getDeviceInfo();
    await getPackageInfo();
    return this;
  } catch (e, s) {
    debugPrint('初始化系统 Store, error: $e, stackTrace: $s');
    return this;
  }
}