EmployeeModel constructor

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

Returns a new EmployeeModel instance.

Implementation

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