custom static method
Implementation
static Insertable<NotificationAuditData> custom({
Expression<int>? id,
Expression<DateTime>? happenedAt,
Expression<String>? checkSum,
Expression<String>? summary,
Expression<String>? packageName,
Expression<String>? type,
Expression<String>? title,
Expression<String>? key,
}) {
return RawValuesInsertable({
if (id != null) 'id': id,
if (happenedAt != null) 'happened_at': happenedAt,
if (checkSum != null) 'check_sum': checkSum,
if (summary != null) 'summary': summary,
if (packageName != null) 'package_name': packageName,
if (type != null) 'type': type,
if (title != null) 'title': title,
if (key != null) 'key': key,
});
}