Dao class

Annotation for create data access object. It must be applied on an abstract class. In the class that this annotation applied on, you can define methods for access and manipulate data in tables

@Dao()
abstract class NoteDao {
  // methods for access and manipulate data
}

Constructors

Dao()
const

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

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

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