Employee constructor

Employee({
  1. String? name,
  2. NullableAddressData? address,
})

Implementation

Employee({
  this.name,
  this.address,
});