EmployerDto constructor

EmployerDto({
  1. String? name,
  2. AddressDto? addresse,
})

Returns a new EmployerDto instance.

Implementation

EmployerDto({
  this.name,
  this.addresse,
});