encryptText method

Future<String> encryptText(
  1. String normalText
)

get encrypt text

Implementation

Future<String> encryptText(String normalText) async {
  return Encryption.instance.encrypt(normalText);
}