Last updated:
0 purchases
hider
The Hider #
The package provides a simple and effective way to mask sensitive information within strings. Whether you're handling passwords, API keys, or any other confidential data, this package helps protect that information by replacing characters with asterisks.
Features #
Dynamic Masking: Adjusts masking based on the length of the input string.
Easy Integration: Seamless integration into your Dart and Flutter projects.
Getting started #
To get started, simply import the Hider class and use the mask method:
void main() {
String sensitiveData = "YourSensitiveDataHere";
String maskedString = Hider.mask(sensitiveData);
print(maskedString);
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.