EmployeePositionCompanion constructor

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

Implementation

const EmployeePositionCompanion({
  this.id = const Value.absent(),
  this.code = const Value.absent(),
  this.name = const Value.absent(),
});