Employee constructor

Employee({
  1. StringValue? firstName,
})

Implementation

factory Employee({
  $0.StringValue? firstName,
}) {
  final result = create();
  if (firstName != null) result.firstName = firstName;
  return result;
}