@override get(String property) { final data = Jwt.parseJwt(token); if (!data.containsKey(property)) { throw Exception('property not found'); } return data[property]; }