GoMailerConfig constructor

GoMailerConfig({
  1. String apiKey = '',
  2. String? baseUrl,
  3. GoMailerEnvironment? environment,
  4. bool enableAnalytics = true,
  5. GoMailerLogLevel logLevel = GoMailerLogLevel.info,
})

Implementation

GoMailerConfig({
  this.apiKey = '',
  this.baseUrl,
  this.environment,
  this.enableAnalytics = true,
  this.logLevel = GoMailerLogLevel.info,
});