siimple 0.0.4
siimple: ^0.0.4 copied to clipboard
Simple but powerful NoSQL database for flutter.
simple #
Simple But Powerful NoSQL Database For Flutter.
Usage: #
// Initialize database
final db = Database();
await db.initialize();
// Create todo collection
final todoCollection = db.collection('todos');
// Create new todo
todoCollection.create({'text': 'This is a dummy todo.'});
// Get all todos
todoCollection.getAll();
See /example
for better understanding.