Persist data with SQLite

cookbook

By Flutter

local_offer Tags
Cookbook article

If you are writing an app that needs to persist and query large amounts of data on the local device, consider using a database instead of a local file or key-value store. In general, databases provide faster inserts, updates, and queries compared to other local persistence solutions.