decryptFromHex method

Future<String?> decryptFromHex(
  1. String? hex,
  2. String key, {
  3. String iv = _iv,
})

Implementation

Future<String?> decryptFromHex(String? hex, String key,
    {String iv = _iv}) async {
  throw UnimplementedError('decryptFromHex() has not been implemented.');
}