DeveloperConfig constructor

const DeveloperConfig({
  1. String? proxyUrl,
  2. DigiaInspector? inspector,
  3. DigiaUIHost? host,
  4. String baseUrl = 'https://app.digia.tech/api/v1',
})

Creates a new DeveloperConfig with optional debugging and development features.

All parameters are optional, allowing selective enablement of development features based on specific debugging needs.

Parameters:

  • proxyUrl: HTTP proxy URL for network debugging
  • inspector: Custom inspector for debug information
  • host: Custom host configuration
  • baseUrl: Custom backend API URL (defaults to production)

Implementation

const DeveloperConfig({
  this.proxyUrl,
  this.inspector,
  this.host,
  this.baseUrl = 'https://app.digia.tech/api/v1',
});