We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2eb17c9 commit 9cb41f4Copy full SHA for 9cb41f4
lib/emailjs.dart
@@ -11,7 +11,11 @@ class EmailJS {
11
static String _origin = 'api.emailjs.com';
12
static http.Client _httpClient = http.Client();
13
14
- static void init(String publicKey, [String? origin, http.Client? httpClient]) {
+ static void init(
15
+ String publicKey, [
16
+ String? origin,
17
+ http.Client? httpClient,
18
+ ]) {
19
EmailJS._publicKey = publicKey;
20
EmailJS._origin = origin ?? 'api.emailjs.com';
21
EmailJS._httpClient = httpClient ?? http.Client();
0 commit comments