getScailoClientForMeetingsService function

MeetingsServiceClient getScailoClientForMeetingsService()

Get the client to access the Meetings service

Implementation

MeetingsServiceClient getScailoClientForMeetingsService() {
  return MeetingsServiceClient(
    getClientChannel(),
    options: CallOptions(
      metadata: {'auth_token': getAuthToken()},
      timeout: const Duration(seconds: 10),
    ),
  );
}