UpdateEmployeeModel constructor

UpdateEmployeeModel({
  1. required int id,
  2. required String title,
  3. required String name,
  4. String? image,
  5. String? color,
})

Returns a new UpdateEmployeeModel instance.

Implementation

UpdateEmployeeModel({
  required this.id,
  required this.title,
  required this.name,
  this.image,
  this.color,
});