skgl_flutter

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

skgl flutter

SKGL (flutter) #

The SKGL library, written in Kotlin, with a shiny new API. Use this to generate &
validate human readable, 20-character serial keys with up to 8 features embedded.
Installation #
Add skgl_flutter as a dependency in your pubspec.yaml file.
Import SKGL:
import 'package:skgl_flutter/skgl_flutter.dart';
copied to clipboard
Generate a Key #
final key = SerialKey.build('a-secret',
config: SerialKeyBuildConfig(
features: {1, 3, 5},
duration: 30,
chunk: true,
));

print(key.text); // XXXXX-XXXXX-XXXXX-XXXXX
copied to clipboard
Decode a Key #
final key = SerialKey('XXXXX-XXXXX-XXXXX-XXXXX', 'a-secret');

var createdOn = key.createdOn;
var expiresOn = key.expiresOn;
var features = key.features;
var isExpired = key.calculateIsExpired();
var daysLeft = key.calculateDaysLeft();
copied to clipboard
UI #
The flutter-powered example project can be used to generate or validate keys,

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.