toConfig method

InfriaConfig toConfig()

Converts this InfriaOptions instance into an InfriaConfig.

Implementation

InfriaConfig toConfig() {
  return InfriaConfig(
    projectId: projectId,
    apiKey: apiKey,
    baseUrl: baseUrl,
    timeout: timeout,
    customHeaders: customHeaders,
  );
}