encryptToHex method
Implementation
String encryptToHex(/* String | Iterable<int> */ input) {
final encryptedBytes = encrypt(input);
return hexEncoder.convert(encryptedBytes);
}
String encryptToHex(/* String | Iterable<int> */ input) {
final encryptedBytes = encrypt(input);
return hexEncoder.convert(encryptedBytes);
}