dart_jwt_token 0.0.1 copy "dart_jwt_token: ^0.0.1" to clipboard
dart_jwt_token: ^0.0.1 copied to clipboard

This package is used to create jwt token, verify token with key, and decode without key.

Dart JWT Token package lets you create jwt token.

Installation #

  1. Add this to your package's pubspec.yaml file:
dependencies:
  dart_jwt_token: ^0.0.1
  1. You can install packages from the command line with Flutter:
$ dart pub get
  1. Import the package and use it in your Flutter App.
import 'package:dart_jwt_token/dart_jwt_token.dart';

Usage #

Create JWT Token #

String createToken(
    {required Map payload,
      required Map<String, dynamic> headers,
      required SecretKey key}) {
  String token = "";
  final jwt = JWT(payload, header: headers);
  token = jwt.sign(key);
  return token;
}
0
likes
0
pub points
75%
popularity

Publisher

unverified uploader

This package is used to create jwt token, verify token with key, and decode without key.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

crypto

More

Packages that depend on dart_jwt_token