AppConfigCompanion class

Constructors

AppConfigCompanion.new({Value<int> id = const Value.absent(), Value<DateTime> updatedAt = const Value.absent(), Value<String> lenderId = const Value.absent(), Value<String> apiEndpoint = const Value.absent(), Value<String> apiKey = const Value.absent(), Value<String> apiSecret = const Value.absent(), Value<String> appBundle = const Value.absent(), Value<bool> shouldSyncData = const Value.absent(), Value<DateTime?> lastSync = const Value.absent()})
const
AppConfigCompanion.insert({Value<int> id = const Value.absent(), Value<DateTime> updatedAt = const Value.absent(), required String lenderId, required String apiEndpoint, required String apiKey, required String apiSecret, required String appBundle, Value<bool> shouldSyncData = const Value.absent(), Value<DateTime?> lastSync = const Value.absent()})

Properties

apiEndpoint → Value<String>
final
apiKey → Value<String>
final
apiSecret → Value<String>
final
appBundle → Value<String>
final
hashCode int
The hash code for this object.
no setterinherited
id → Value<int>
final
lastSync → Value<DateTime?>
final
lenderId → Value<String>
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
shouldSyncData → Value<bool>
final
updatedAt → Value<DateTime>
final

Methods

copyWith({Value<int>? id, Value<DateTime>? updatedAt, Value<String>? lenderId, Value<String>? apiEndpoint, Value<String>? apiKey, Value<String>? apiSecret, Value<String>? appBundle, Value<bool>? shouldSyncData, Value<DateTime?>? lastSync}) AppConfigCompanion
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>? updatedAt, Expression<String>? lenderId, Expression<String>? apiEndpoint, Expression<String>? apiKey, Expression<String>? apiSecret, Expression<String>? appBundle, Expression<bool>? shouldSyncData, Expression<DateTime>? lastSync}) → Insertable<AppConfigData>