ExpectationStep<T> class abstract

Implementers

Constructors

ExpectationStep()

Properties

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

Methods

list({int limit = 1000000, int offset = 0}) Future<List<T>>
Returns a list of results, optionally limited by: offset: starts returning results from the specified offset and skips all records before. SQL: OFFSET
mapTo<M>([Mapper<M>? mapper]) ExpectationStep<M>
Maps resulting records using the specified mapping function.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
stream({int limit = 1000000, int offset = 0}) Stream<T>
Returns a stream of results, optionally limited by: offset: starts returning results from the specified offset and skips all records before. SQL: OFFSET
toString() String
A string representation of this object.
inherited
unique() Future<T?>
Returns a single result.

Operators

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