getAppID method

Future<String?> getAppID()

Implementation

Future<String?> getAppID() async {
  try {
    var res = await readItem(key: StorageKeys.organizationID);
    return res;
  } catch (err) {
    return null;
  }
}