custom static method
Implementation
static Insertable<EmployeePositionData> custom({
Expression<int>? id,
Expression<String>? code,
Expression<String>? name,
}) {
return RawValuesInsertable({
if (id != null) 'id': id,
if (code != null) 'code': code,
if (name != null) 'name': name,
});
}