GenderCompanion constructor

const GenderCompanion({
  1. Value<String> id = const Value.absent(),
  2. Value<String> name = const Value.absent(),
  3. Value<int> rowid = const Value.absent(),
})

Implementation

const GenderCompanion({
  this.id = const Value.absent(),
  this.name = const Value.absent(),
  this.rowid = const Value.absent(),
});