NotificationMessageCompanion constructor

const NotificationMessageCompanion({
  1. Value<int> id = const Value.absent(),
  2. Value<String> title = const Value.absent(),
  3. Value<String> message = const Value.absent(),
  4. Value<DateTime> createDateTime = const Value.absent(),
  5. Value<bool> read = const Value.absent(),
  6. Value<String> type = const Value.absent(),
})

Implementation

const NotificationMessageCompanion({
  this.id = const Value.absent(),
  this.title = const Value.absent(),
  this.message = const Value.absent(),
  this.createDateTime = const Value.absent(),
  this.read = const Value.absent(),
  this.type = const Value.absent(),
});