Hello, I want to make an application in flutter that is 100% offline. All content would be sold already provided in the application, and that content could be partially modified by the user.
The problem I have is what would be the correct way to store this information? From what I have seen I would have to create a new data type, and then in app state create a list with the information.
The thing is that I have a very large list and from app state I cannot import the data with a csv for example, I have to add them manually one by one.
Can someone help me?