Skip to content

Latest commit

 

History

History
24 lines (14 loc) · 686 Bytes

README.md

File metadata and controls

24 lines (14 loc) · 686 Bytes

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);
}