Skip to content

Instantly share code, notes, and snippets.

View murhussain's full-sized avatar
🎯
Focusing

MURASHI Hussein murhussain

🎯
Focusing
View GitHub Profile
@murhussain
murhussain / HomePage.dart
Created March 7, 2022 13:10 — forked from carzacc/HomePage.dart
Flutter app for JWT tutorial
class HomePage extends StatelessWidget {
HomePage(this.jwt, this.payload);
factory HomePage.fromBase64(String jwt) =>
HomePage(
jwt,
json.decode(
ascii.decode(
base64.decode(base64.normalize(jwt.split(".")[1]))
)