encryptToBase64 method
Implementation
String encryptToBase64(/* String | Iterable<int> */ input) {
final encryptedBytes = encrypt(input);
return base64Encode(encryptedBytes);
}
String encryptToBase64(/* String | Iterable<int> */ input) {
final encryptedBytes = encrypt(input);
return base64Encode(encryptedBytes);
}