copyWith method
Implementation
NotificationMessageCompanion copyWith({
Value<int>? id,
Value<String>? title,
Value<String>? message,
Value<DateTime>? createDateTime,
Value<bool>? read,
Value<String>? type,
}) {
return NotificationMessageCompanion(
id: id ?? this.id,
title: title ?? this.title,
message: message ?? this.message,
createDateTime: createDateTime ?? this.createDateTime,
read: read ?? this.read,
type: type ?? this.type,
);
}