custom static method
Implementation
static Insertable<NoteData> custom({
Expression<int>? id,
Expression<String>? title,
Expression<String>? content,
Expression<DateTime>? createDateTime,
Expression<String>? colorCode,
}) {
return RawValuesInsertable({
if (id != null) 'id': id,
if (title != null) 'title': title,
if (content != null) 'content': content,
if (createDateTime != null) 'create_date_time': createDateTime,
if (colorCode != null) 'color_code': colorCode,
});
}