copyWith method
Implementation
AppConfigCompanion 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}) {
return AppConfigCompanion(
id: id ?? this.id,
updatedAt: updatedAt ?? this.updatedAt,
lenderId: lenderId ?? this.lenderId,
apiEndpoint: apiEndpoint ?? this.apiEndpoint,
apiKey: apiKey ?? this.apiKey,
apiSecret: apiSecret ?? this.apiSecret,
appBundle: appBundle ?? this.appBundle,
shouldSyncData: shouldSyncData ?? this.shouldSyncData,
lastSync: lastSync ?? this.lastSync,
);
}