getScailoClientForFormsSectionsService function

FormsSectionsServiceClient getScailoClientForFormsSectionsService()

Get the client to access the Forms Sections service

Implementation

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