MailgunClient.eu constructor

MailgunClient.eu(
  1. String domain,
  2. String apiKey
)

initialise MailgunClient with the eu host

domain is the domain of the Mailgun account, and apiKey is the API key of the Mailgun account

The parameters are passed to all the different clients

Implementation

factory MailgunClient.eu(String domain, String apiKey) =>
    MailgunClient._(domain, apiKey, MGDefaults.euHost);