Store class abstract

Store

...

Implementers

Constructors

Store()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

browse(String path, [Query? query]) Stream<AlbumOre>
commit(Album album) Future<AlbumOre>
commitAll(Iterable<Album?> ore) Stream<AlbumOre>
create(Album album, String dir) Future<AlbumOre>
createAll(Iterable<Album?> ore, String dir) Stream<AlbumOre>
delete(Album album) Future<AlbumOre>
deleteAll(Iterable<Album?> ore) Stream<AlbumOre>
fetch(String path, [Query? query]) Future<AlbumOre>
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
onBrowse(String path, [Query? query]) Stream<AlbumOre>
onCommit(Album album, String path) Future<AlbumOre>
onCreate(Album album, String dir) Future<AlbumOre>
onDelete(String path) Future<AlbumOre>
onFetch(String path, [Query? query]) Future<AlbumOre>
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Properties

instance Store
no setter

Static Methods

initialize(Store store) → void