custom static method
- Expression<
String> ? callId, - Expression<
String> ? credentials, - Expression<
int> ? rowid,
Implementation
static Insertable<CallCredentialsRow> custom({
Expression<String>? callId,
Expression<String>? credentials,
Expression<int>? rowid,
}) {
return RawValuesInsertable({
if (callId != null) 'call_id': callId,
if (credentials != null) 'credentials': credentials,
if (rowid != null) 'rowid': rowid,
});
}