DeveloperConfig constructor
const
DeveloperConfig({
- String? proxyUrl,
- DigiaInspector? inspector,
- DigiaUIHost? host,
- 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 debugginginspector: Custom inspector for debug informationhost: Custom host configurationbaseUrl: Custom backend API URL (defaults to production)
Implementation
const DeveloperConfig({
this.proxyUrl,
this.inspector,
this.host,
this.baseUrl = 'https://app.digia.tech/api/v1',
});