NewEmployeeModel constructor

NewEmployeeModel({
  1. required String? title,
  2. required String? name,
  3. String? image,
  4. String? color,
  5. String? role,
})

Returns a new NewEmployeeModel instance.

Implementation

NewEmployeeModel({
  required this.title,
  required this.name,
  this.image,
  this.color,
  this.role,
});