decryptAesGcm method
Decrypts the provided cipherText
using AES-GCM with the given masterKey
.
Returns the original plain text string.
Implementation
@override
Future<String> decryptAesGcm(String masterKey, String cipherText) async {
return await decryptAesGcmWeb(masterKey, cipherText);
}