Need to decrypt an AES encrypted string that was encrypted in flutter https://pub.dev/packages/encrypt

That’s PKCS#7 padding, to make the message length a multiple of the block size. You can strip it by passing encrypt: false, padding: :pkcs_padding instead of just false as the last argument.