decryptAES256 method
Implementation
Future<String> decryptAES256({
  required String cipherText,
  String? key,
}) async {
  try {
    final String keyword = key ?? WaterbusSdk.messageEncryptionKey;
    if (keyword.isEmpty) return cipherText;
    final String message = await Aes256Gcm.decrypt(cipherText, keyword);
    return message;
  } catch (e) {
    return cipherText;
  }
}