LocationAuditCompanion class

Constructors

LocationAuditCompanion.new({Value<int> id = const Value.absent(), Value<DateTime> createdAt = const Value.absent(), Value<double> lat = const Value.absent(), Value<double> long = const Value.absent(), Value<double> altitude = const Value.absent(), Value<double> speed = const Value.absent(), Value<double> accuracy = const Value.absent(), Value<double> distance = const Value.absent()})
const
LocationAuditCompanion.insert({Value<int> id = const Value.absent(), Value<DateTime> createdAt = const Value.absent(), required double lat, required double long, required double altitude, required double speed, required double accuracy, required double distance})

Properties

accuracy → Value<double>
final
altitude → Value<double>
final
createdAt → Value<DateTime>
final
distance → Value<double>
final
hashCode int
The hash code for this object.
no setterinherited
id → Value<int>
final
lat → Value<double>
final
long → Value<double>
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
speed → Value<double>
final

Methods

copyWith({Value<int>? id, Value<DateTime>? createdAt, Value<double>? lat, Value<double>? long, Value<double>? altitude, Value<double>? speed, Value<double>? accuracy, Value<double>? distance}) LocationAuditCompanion
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toColumns(bool nullToAbsent) Map<String, Expression<Object>>
Converts this object into a map of column names to expressions to insert or update.
toString() String
A string representation of this object.
override

Operators

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

Static Methods

custom({Expression<int>? id, Expression<DateTime>? createdAt, Expression<double>? lat, Expression<double>? long, Expression<double>? altitude, Expression<double>? speed, Expression<double>? accuracy, Expression<double>? distance}) → Insertable<LocationAuditData>