Repository<Entity> class abstract

Implementers

Constructors

Repository()
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
rawCreate<TResponse>({required Entity entity, required ToMap<Entity> entityParser, required FromMap<TResponse> responseParser}) Future<TResponse>
rawDelete<TResponse, ID>({required Entity entity, required GetId<Entity, ID> idParser, required FromMap<TResponse> responseParser}) Future<TResponse>
rawGetAll({required FromMap<Entity> entityParser}) Future<List<Entity>>
rawGetById<ID>({required ID id, required GetId<Entity, ID> idParser, required FromMap<Entity> entityParser}) Future<Entity>
rawUpdate<TResponse, ID>({required Entity entity, required ToMap<Entity> entityParser, required GetId<Entity, ID> idParser, required FromMap<TResponse> responseParser}) Future<TResponse>
toString() String
A string representation of this object.
inherited

Operators

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