SystemLogCompanion constructor

const SystemLogCompanion({
  1. Value<int> id = const Value.absent(),
  2. Value<DateTime> createDateTime = const Value.absent(),
  3. Value<String> severity = const Value.absent(),
  4. Value<String> content = const Value.absent(),
})

Implementation

const SystemLogCompanion({
  this.id = const Value.absent(),
  this.createDateTime = const Value.absent(),
  this.severity = const Value.absent(),
  this.content = const Value.absent(),
});