CreateParticipantRequest constructor

CreateParticipantRequest({
  1. String? parent,
  2. 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;
}