DepartmentCompanion.insert constructor
DepartmentCompanion.insert({})
Implementation
DepartmentCompanion.insert({
this.id = const Value.absent(),
required String code,
required String name,
required int companyId,
this.managerId = const Value.absent(),
this.imagePath = const Value.absent(),
this.description = const Value.absent(),
}) : code = Value(code),
name = Value(name),
companyId = Value(companyId);