CreateParticipantRequest constructor
CreateParticipantRequest({
- String? parent,
- Participant? participant,
Implementation
factory CreateParticipantRequest({
$core.String? parent,
Participant? participant,
}) {
final _result = create();
if (parent != null) {
_result.parent = parent;
}
if (participant != null) {
_result.participant = participant;
}
return _result;
}