GetTokenForVideoMeetingReq constructor
Implementation
factory GetTokenForVideoMeetingReq({
$core.String? room,
$core.String? identity,
}) {
final result = create();
if (room != null) result.room = room;
if (identity != null) result.identity = identity;
return result;
}