AuthEmail constructor

AuthEmail({
  1. required String appName,
  2. required String server,
  3. required String serverKey,
  4. bool isDebug = false,
})

Create a new AuthEmail instance.

appName: the name of the application. Must be the same as the appName on your server.

server: the URL point to the server side.

serverKey: an unencrypted server key.

Implementation

AuthEmail({
  required this.appName,
  required this.server,
  required this.serverKey,
  this.isDebug = false,
});