UpdateParticipantRequest constructor
UpdateParticipantRequest({
- Participant? participant,
- FieldMask? updateMask,
Implementation
factory UpdateParticipantRequest({
Participant? participant,
$18.FieldMask? updateMask,
}) {
final _result = create();
if (participant != null) {
_result.participant = participant;
}
if (updateMask != null) {
_result.updateMask = updateMask;
}
return _result;
}