Database class

A dart:io based Database

Constructors

Database(String b)
Create a Database with path b

Properties

hashCode int
The hash code for this object.
no setterinherited
path String
Return the Database's path
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
remove(String path) Future<void>
Remove from the database
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited
operator [](String path) Future
Get from the Database
operator []=(String path, dynamic data) → void
Put into the Database