NoteCompanion constructor

const NoteCompanion({
  1. Value<int> id = const Value.absent(),
  2. Value<String> title = const Value.absent(),
  3. Value<String> content = const Value.absent(),
  4. Value<DateTime> createDateTime = const Value.absent(),
  5. Value<String> colorCode = const Value.absent(),
})

Implementation

const NoteCompanion({
  this.id = const Value.absent(),
  this.title = const Value.absent(),
  this.content = const Value.absent(),
  this.createDateTime = const Value.absent(),
  this.colorCode = const Value.absent(),
});