Skip to content

Instantly share code, notes, and snippets.

@carzacc
carzacc / HomePage.dart
Created February 13, 2020 19:47
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]))
)