Skip to content

Instantly share code, notes, and snippets.

View YuvarajLimited's full-sized avatar

Yuvaraj Ramesh YuvarajLimited

View GitHub Profile
@YuvarajLimited
YuvarajLimited / HomePage.dart
Created July 19, 2022 08:40 — 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]))
)