power_plant
A unique token generator
Hecho en 🇵🇷 Radamés J. ValentÃn Reyes
Importing the library
import 'package:power_plant/power_plant.dart';
Generate a unique alphanumeric combination(token) that does not repeat(in theory(must be greater than or equal to 18 to avoid repeating the token))
String token = uniqueToken(tokenLength: 50);
print("My randomly generated token is:");
print(token);//Prints something like 22V4Q[e2G47)21cà °69CN D24¥BG8344
