DevelopmentConfig typedef

DevelopmentConfig = ({String? apiToken, String? baseUrl, bool? enabled})

Development environment configuration.

Used to configure the SDK for development and testing environments. When enabled, allows overriding API endpoints and using custom tokens.

Example

final config = DevelopmentConfig(
  enabled: true,
  baseUrl: 'https://dev.calljmp.com',
  apiToken: 'dev-token-123',
);

Implementation

typedef DevelopmentConfig = ({
  bool? enabled,
  String? baseUrl,
  String? apiToken,
});