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