jwtson 1.0.7 copy "jwtson: ^1.0.7" to clipboard
jwtson: ^1.0.7 copied to clipboard

Jwtson allows you to decode/encode, verify and generate JWT. this plugin referenfe from https://jwt.io/

jwtson #

A new Flutter plugin project.

Getting Started #

This project is a starting point for a Flutter plug-in package, a specialized package that includes platform-specific implementation code for Android and/or iOS.

For help getting started with Flutter development, view the online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

Example #

import 'package:flutter/material.dart';
import 'package:jwtson/jwtson.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  final _jwtsonPlugin = Jwtson();

  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Jwtson example app'),
        ),
        body: Center(
          child: ElevatedButton(
              onPressed: () async {
                // generate and sign jwt token
                var data = await _jwtsonPlugin.generateToken(key: "test", data: {"key": "value"});
                print(data);
                // decode jwt token
                var decode = await _jwtsonPlugin.decodeJwtToken(key: "test", data: data);
                print(decode?.data);
              },
              child: const Text('click me')),
        ),
      ),
    );
  }
}


3
likes
80
pub points
55%
popularity

Publisher

unverified uploader

Jwtson allows you to decode/encode, verify and generate JWT. this plugin referenfe from https://jwt.io/

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

dart_jsonwebtoken, flutter, plugin_platform_interface

More

Packages that depend on jwtson