Storing your secret keys in Flutter

Ricardo Castellanos
2 min readJan 25, 2023

The most secure way to protect your confidential information is not to include them in your application. Even in native development (Android, for instance), extra steps are necessary to hinder someone from retrieving the keys, by disassembling the program. I am writing this because I faced the same issue in Flutter, as other people, who were looking for something similar to local properties in Android.

--

--