yAesDecode function

String yAesDecode(
  1. String content,
  2. String password
)

aes解密

Implementation

String yAesDecode(String content, String password) {
  return _getPlugin()!.aesDecode(content, password);
}