hider 1.0.1 copy "hider: ^1.0.1" to clipboard
hider: ^1.0.1 copied to clipboard

A Dart package providing a utility class for masking sensitive information in strings.

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);
}
2
likes
150
points
1.51k
downloads

Publisher

verified publisheravdonin.dev

Weekly Downloads

A Dart package providing a utility class for masking sensitive information in strings.

Repository (GitHub)

Documentation

API reference

License

BSD-3-Clause (license)

More

Packages that depend on hider