getJwt static method

Future<String?> getJwt()

Implementation

static Future<String?> getJwt() async {
  if (jwt.isEmpty) {
    var prefs = await SharedPreferences.getInstance();
    jwt = prefs.getString("jwt") ?? prefs.getString("idtoken") ?? '';
  }
  return jwt;
}