OccupationInput constructor

OccupationInput({
  1. List<String>? roles,
  2. String? other,
})

Implementation

OccupationInput({List<String>? roles, this.other}) : super() {
  this.roles = roles ?? [];
}