PostRequestSecureLinkAction constructor

PostRequestSecureLinkAction(
  1. String email,
  2. String phone,
  3. String appCode, {
  4. dynamic callback()?,
})

Implementation

PostRequestSecureLinkAction(
  this.email,
  this.phone,
  this.appCode, {
  this.callback,
}) : super(
        "$_PATH",
        {
          "email": email,
          "phone": phone,
          "appCode": appCode,
        },
      );