UserHandler<T extends UserEntity> class abstract

Implementers

Constructors

UserHandler({required DataRepository<T> repository, required LocalDataRepository<T> localDataRepository})
const

Properties

hashCode int
The hash code for this object.
no setterinherited
localDataRepository LocalDataRepository<T>
final
repository DataRepository<T>
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

create<R>(T entity, {R? source(R parent)?}) Future<Response<T>>
delete<R>(String id, {R? source(R parent)?}) Future<Response<T>>
get<R>(String id, {bool fromCache = false, R? source(R parent)?}) Future<Response<T>>
gets<R>({bool fromCache = false, R? source(R parent)?}) Future<Response<T>>
getUpdates<R>({R? source(R parent)?}) Future<Response<T>>
live<R>(String id, {R? source(R parent)?}) Stream<Response<T>>
lives<R>({R? source(R parent)?}) Stream<Response<T>>
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited
update<R>(String id, Map<String, dynamic> data, {R? source(R parent)?}) Future<Response<T>>

Operators

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