UniqueUsers class

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

Static Methods

all({String? connection}) Future<List<$UniqueUser>>
anyExist({String? connection}) Future<bool>
count({String? connection}) Future<int>
find(Object id, {String? connection}) Future<$UniqueUser?>
findOrFail(Object id, {String? connection}) Future<$UniqueUser>
fromMap(Map<String, Object?> data, {ValueCodecRegistry? registry}) $UniqueUser
Builds a tracked model from a column/value map.
limit(int count, {String? connection}) → Query<$UniqueUser>
orderBy(String column, {String direction = "asc", String? connection}) → Query<$UniqueUser>
query([String? connection]) → Query<$UniqueUser>
Starts building a query for $UniqueUser.
repo([String? connection]) → Repository<$UniqueUser>
Creates a Repository for $UniqueUser.
toMap($UniqueUser model, {ValueCodecRegistry? registry}) Map<String, Object?>
Converts a tracked model to a column/value map.
where(String column, String operator, dynamic value, {String? connection}) → Query<$UniqueUser>
whereIn(String column, List values, {String? connection}) → Query<$UniqueUser>