Future<bool> verify(String jwt) async { var token = JsonWebToken.unverified(jwt); return token.verify(JsonWebKeyStore()..addKey(_jsonWebKey)); }