ServiceConfig typedef
ServiceConfig = ({String? baseUrl})
Configuration for custom service endpoints.
Used to specify a custom base URL for service requests when using your own deployed service instance.
Example
final config = ServiceConfig(baseUrl: 'https://my-service.com');
Implementation
typedef ServiceConfig = ({String? baseUrl});