decryptMap method

Map<String, dynamic> decryptMap(
  1. String cipherText,
  2. Nonce nonce
)

Implementation

Map<String, dynamic> decryptMap(String cipherText, Nonce nonce) =>
    jsonDecode(decrypt(cipherText, nonce));