decryptFromHex static method

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

Implementation

static Future<String> decryptFromHex(String hex, String key,
    {String iv = _iv}) async {
  final String crypt =
      await _channel.invokeMethod('decryptFromHex', [hex, key, iv]);
  return crypt;
}