DeepLeafConfig constructor

DeepLeafConfig({
  1. required String apiKey,
  2. String? language = 'en',
  3. String? endpoint,
})

Implementation

DeepLeafConfig ({
  required this.apiKey,
  this.language = 'en',  // Default to 'en' if not provided
  this.endpoint,
});