Id class

Indicates the primary key field.

Every Entity must have exactly one field annotated with Id.

Example:

@Id(autoIncrement: true)
int? id;
Annotations
  • @Target.new({TargetKind.field})

Constructors

Id({bool autoIncrement = true})
const

Properties

autoIncrement bool
Whether the database should automatically increment this value.
final
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